Normand Briere
2019-04-22 a9e12f6c508810604c8c91ee15451776b08ce1a1
Constants.java
....@@ -7,7 +7,6 @@
77
88 public interface Constants
99 {
10
-
1110 //public static final double pi = math.PI;
1211 //public static final double radian = 0.01745329;
1312 public static final String EOL = System.getProperty("line.separator");
....@@ -15,6 +14,7 @@
1514 public static final String imageTypes[] = {
1615 "gif", "tga", "iff", "ppm", "pgm", "png", "jpeg", "tiff", "sys", "jpg"
1716 };
17
+
1818 public static final int beigeTheme[][] = {
1919 {
2020 104, 95, 90
....@@ -34,5 +34,24 @@
3434 255, 255, 255
3535 }
3636 };
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
+ };
3857 }