initial quantum version
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / editors / SQLColorConstants.java
1 package com.quantum.editors;
2
3 import org.eclipse.swt.graphics.RGB;
4
5 public class SQLColorConstants {
6         public static RGB BACKGROUND = new RGB(255, 0, 255);
7         public static RGB COMMENT = new RGB(88, 148, 64);
8         public static RGB IDENTIFIER = new RGB(0, 0, 0);
9         public static RGB KEYWORD = new RGB(126, 0, 75);
10         public static RGB STRING = new RGB(0, 0, 255);
11         public static RGB NUMERIC = new RGB(255, 0, 0);
12         public static RGB DEFAULT = new RGB(0, 0, 0);
13 }