4ec6924578808e5e701e398978efe7079cc33bb5
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / editors / IPHPColorConstants.java
1 package net.sourceforge.phpeclipse.editors;
2
3 import org.eclipse.swt.graphics.RGB;
4
5 public interface IPHPColorConstants {
6         RGB XML_COMMENT =       new RGB(128,   0,   0);
7         RGB PROC_INSTR =        new RGB(128, 128, 128);
8         RGB STRING=             new RGB(  0, 128,   0);
9         RGB DEFAULT=            new RGB(  0,   0,   0);
10         RGB PHP_TAG=                new RGB(  0,   0, 128);
11         
12         RGB HTML =                              new RGB(  9, 148, 255);
13         
14         RGB PHP_DEFAULT =               new RGB(255, 154,   9);
15         RGB PHP_COMMENT =               new RGB(  0,   0, 255); 
16         RGB PHP_STRING =                new RGB( 51, 167,  30);
17         RGB PHP_FONCTION =              new RGB(255, 100,  10);
18         RGB PHP_OPERATOR =              new RGB(255, 200,  00);
19         RGB PHP_VARIABLE =              new RGB(227,  22,  22);
20 }