.. | .. |
---|
7 | 7 | |
---|
8 | 8 | public interface Constants |
---|
9 | 9 | { |
---|
10 | | - |
---|
11 | 10 | //public static final double pi = math.PI; |
---|
12 | 11 | //public static final double radian = 0.01745329; |
---|
13 | 12 | public static final String EOL = System.getProperty("line.separator"); |
---|
.. | .. |
---|
15 | 14 | public static final String imageTypes[] = { |
---|
16 | 15 | "gif", "tga", "iff", "ppm", "pgm", "png", "jpeg", "tiff", "sys", "jpg" |
---|
17 | 16 | }; |
---|
| 17 | + |
---|
18 | 18 | public static final int beigeTheme[][] = { |
---|
19 | 19 | { |
---|
20 | 20 | 104, 95, 90 |
---|
.. | .. |
---|
34 | 34 | 255, 255, 255 |
---|
35 | 35 | } |
---|
36 | 36 | }; |
---|
37 | | - |
---|
| 37 | + public static final int yellowTheme[][] = { |
---|
| 38 | + { |
---|
| 39 | + 104, 95, 90 |
---|
| 40 | + }, { |
---|
| 41 | + 164, 150, 145 // |
---|
| 42 | + }, { |
---|
| 43 | + 204, 190, 185 |
---|
| 44 | + }, { |
---|
| 45 | + 111, 111, 111 |
---|
| 46 | + }, { |
---|
| 47 | + 163, 159, 159 |
---|
| 48 | + }, { |
---|
| 49 | + //240, 226, 200 // |
---|
| 50 | + 240, 226, 200 // |
---|
| 51 | + }, { |
---|
| 52 | + 0, 0, 0 |
---|
| 53 | + }, { |
---|
| 54 | + 255, 255, 255 |
---|
| 55 | + } |
---|
| 56 | + }; |
---|
38 | 57 | } |
---|