01: package tide.editor;
02:
03: import java.awt.Color;
04:
05: /** used in the Tree. => TODO: make that look and feel dependant !
06: */
07: public class UIConstants {
08:
09: private UIConstants() {
10:
11: }
12:
13: public static Color blue = new Color(50, 50, 200);
14: public static Color green = new Color(30, 140, 10);
15: public static Color red = new Color(200, 60, 60);
16: public static Color brown = new Color(100, 70, 70);
17:
18: }
|