private TextStyle hubNameStyle() { TextStyle _textStyle = new TextStyle(); final TextStyle textStyle = _textStyle; RGB _rGB = new RGB(0, 0, 0); textStyle.setColor(_rGB); return textStyle; }
private TextStyle myCommentTextStyle() { TextStyle _textStyle = new TextStyle(); final TextStyle textStyle = _textStyle; RGB _rGB = new RGB(88, 88, 88); textStyle.setColor(_rGB); textStyle.setStyle(SWT.ITALIC); return textStyle; }
private TextStyle sceneNameStyle() { TextStyle _textStyle = new TextStyle(); final TextStyle textStyle = _textStyle; RGB _rGB = new RGB(0, 0, 0); textStyle.setColor(_rGB); textStyle.setStyle(SWT.BOLD); return textStyle; }
private TextStyle crossRefStringStyle() { TextStyle _xblockexpression = null; { TextStyle _textStyle = new TextStyle(); final TextStyle textStyle = _textStyle; RGB _rGB = new RGB(44, 44, 44); textStyle.setColor(_rGB); _xblockexpression = (textStyle); } return _xblockexpression; }
public TextStyle numberTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(125, 125, 125)); return textStyle; }
public TextStyle modifierTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(127, 0, 85)); textStyle.setStyle(SWT.BOLD); return textStyle; }
public TextStyle stringTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(42, 0, 255)); return textStyle; }
public TextStyle defaultTextStyle() { TextStyle textStyle = new TextStyle(); textStyle.setBackgroundColor(new RGB(255, 255, 255)); textStyle.setColor(new RGB(0, 0, 0)); return textStyle; }
public TextStyle commentTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(63, 127, 95)); return textStyle; }
public TextStyle resourceRefTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(128, 0, 0)); // cayenne brown return textStyle; }
public TextStyle taskTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(68, 68, 68)); textStyle.setStyle(SWT.BOLD); return textStyle; }
public TextStyle regexpTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(0, 0, 192)); textStyle.setStyle(SWT.BOLD); return textStyle; }
public TextStyle propertyTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(0x99, 0x33, 0x00)); // Brownish return textStyle; }
public TextStyle pathTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(63, 95, 191)); textStyle.setStyle(SWT.ITALIC); return textStyle; }
public TextStyle italicKeywordLightStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(127, 0, 85)); textStyle.setStyle(SWT.ITALIC); return textStyle; }
public TextStyle documentationStyle() { TextStyle textStyle = defaultTextStyle().copy(); textStyle.setColor(new RGB(63, 95, 191)); return textStyle; }