13100507997bf5ada5de58980214bce7f518c153
[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 //todo: make the colors configurable
6
7 public interface IPHPColorConstants {
8         RGB XML_COMMENT = new RGB(128, 0, 0);
9         RGB PROC_INSTR = new RGB(128, 128, 128);
10         RGB STRING = new RGB(0, 128, 0);
11         RGB DEFAULT = new RGB(0, 0, 0);
12         RGB PHP_TAG = new RGB(0, 0, 128);
13
14         RGB HTML = new RGB(9, 148, 255);
15
16         RGB PHP_DEFAULT = new RGB(255, 154, 9);
17         RGB PHP_COMMENT = new RGB(227, 22, 22);
18         RGB PHP_STRING = new RGB(51, 167, 30);
19         RGB PHP_FUNCTION = new RGB(255, 100, 10);
20 }