1 package net.sourceforge.phpeclipse.editors;
3 import org.eclipse.swt.graphics.RGB;
5 //todo: make the colors configurable
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);
14 RGB HTML = new RGB(9, 148, 255);
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);