update code and new tag color
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / editors / IPHPColorConstants.java
index 1310050..4ec6924 100644 (file)
@@ -2,19 +2,19 @@ package net.sourceforge.phpeclipse.editors;
 
 import org.eclipse.swt.graphics.RGB;
 
-//todo: make the colors configurable
-
 public interface IPHPColorConstants {
-       RGB XML_COMMENT = new RGB(128, 0, 0);
-       RGB PROC_INSTR = new RGB(128, 128, 128);
-       RGB STRING = new RGB(0, 128, 0);
-       RGB DEFAULT = new RGB(0, 0, 0);
-       RGB PHP_TAG = new RGB(0, 0, 128);
-
-       RGB HTML = new RGB(9, 148, 255);
-
-       RGB PHP_DEFAULT = new RGB(255, 154, 9);
-       RGB PHP_COMMENT = new RGB(227, 22, 22);
-       RGB PHP_STRING = new RGB(51, 167, 30);
-       RGB PHP_FUNCTION = new RGB(255, 100, 10);
+       RGB XML_COMMENT =       new RGB(128,   0,   0);
+       RGB PROC_INSTR =        new RGB(128, 128, 128);
+       RGB STRING=             new RGB(  0, 128,   0);
+       RGB DEFAULT=            new RGB(  0,   0,   0);
+       RGB PHP_TAG=                new RGB(  0,   0, 128);
+       
+       RGB HTML =                              new RGB(  9, 148, 255);
+       
+       RGB PHP_DEFAULT =               new RGB(255, 154,   9);
+       RGB PHP_COMMENT =               new RGB(  0,   0, 255); 
+       RGB PHP_STRING =                new RGB( 51, 167,  30);
+       RGB PHP_FONCTION =              new RGB(255, 100,  10);
+       RGB PHP_OPERATOR =              new RGB(255, 200,  00);
+       RGB PHP_VARIABLE =              new RGB(227,  22,  22);
 }