source: java/FramclipsePlugin/src/main/java/com/framsticks/framclipse/syntaxColoring/FramclipseColors.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 441 bytes
Line 
1package com.framsticks.framclipse.syntaxColoring;
2
3import org.eclipse.swt.graphics.RGB;
4
5public interface FramclipseColors {
6        RGB CODE = new RGB(0, 0, 0);
7        RGB COMMENT = new RGB(63, 127, 95);
8        RGB DEFAULT = new RGB(0, 0, 0);
9        RGB DESCRIPTION = new RGB(127, 127, 127);
10        RGB KEYWORD = new RGB(127, 0, 85);
11        RGB OPERATOR = new RGB(0, 0, 0);
12        RGB NUMBER = new RGB(0, 0, 0);
13        RGB STRING = new RGB(42, 0, 255);
14
15        RGB ERROR = new RGB(255, 0, 0);
16}
Note: See TracBrowser for help on using the repository browser.