StringConverter.asRGB(service.getStringPreference(FregePreferencesConstants.P_ERRORCOLOR),
display.getSystemColor(SWT.COLOR_RED).getRGB()));
Color spcColor = new Color (display,
StringConverter.asRGB(service.getStringPreference(FregePreferencesConstants.P_SPECIALCOLOR),
display.getSystemColor(SWT.COLOR_DARK_MAGENTA).getRGB()));
commentAttribute = new TextAttribute(commColor, null, SWT.NORMAL);
docuAttribute = new TextAttribute(docuColor, null, SWT.ITALIC);
normalAttribute = null; // new TextAttribute(display.getSystemColor(SWT.COLOR_BLACK), null, SWT.NORMAL);
keywordAttribute = new TextAttribute(keywdColor, null, SWT.BOLD);
literalAttribute = new TextAttribute(litColor, null, SWT.NORMAL);
errorAttribute = new TextAttribute(errColor, null, SWT.NORMAL);
specialAttribute = new TextAttribute(spcColor, null, SWT.BOLD);
identAttribute = new TextAttribute(varidColor, null, SWT.NORMAL);
impAttribute = new TextAttribute(importColor, null, italic ? SWT.ITALIC : SWT.NORMAL);
iopAttribute = new TextAttribute(importColor, null, SWT.NORMAL);
nsAttribute = new TextAttribute(tconColor, null, boldns ? SWT.BOLD : SWT.NORMAL);
typeAttribute = new TextAttribute(tconColor, null, SWT.NORMAL);
itypeAttribute = new TextAttribute(tconColor, null, italic ? SWT.ITALIC : SWT.NORMAL);
conAttribute = new TextAttribute(dconColor, null, SWT.NORMAL);
iconAttribute = new TextAttribute(dconColor, null, italic ? SWT.ITALIC : SWT.NORMAL);
}