@@ -8,7 +8,7 @@ public class Color {
88 public final static Color Blue = new Color (165 );
99 public final static Color Teal = new Color (159 );
1010 public final static Color Purple = new Color (164 );
11- public final static Color Orange = new Color (179 );
11+ public final static Color Orange = new Color (156 );
1212 public final static Color Brown = new Color (19 );
1313 public final static Color White = new Color (255 );
1414 public final static Color Yellow = new Color (135 );
@@ -19,7 +19,7 @@ public class Color {
1919
2020 private static final RGBQUAD RGBRESERVE = new RGBQUAD (0 , 0 , 0 , 0xFF );
2121
22- private static final RGBQUAD defaultPalette [] = {
22+ private static final RGBQUAD [] defaultPalette = {
2323 new RGBQUAD (0 , 0 , 0 ), RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE ,
2424 RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE , RGBRESERVE ,
2525 new RGBQUAD (24 , 36 , 44 ), new RGBQUAD (72 , 36 , 20 ), new RGBQUAD (92 , 44 , 20 ), new RGBQUAD (112 , 48 , 20 ), new RGBQUAD (104 , 60 , 36 ), new RGBQUAD (124 , 64 , 24 ), new RGBQUAD (120 , 76 , 44 ), new RGBQUAD (168 , 8 , 8 ),
@@ -55,7 +55,7 @@ RGBRESERVE, RGBRESERVE, RGBRESERVE, RGBRESERVE, RGBRESERVE, RGBRESERVE, RGBRESER
5555 };
5656
5757 private static boolean rgbInitialized ;
58- private static byte closestColor [][][] = new byte [64 ][64 ][64 ];
58+ private static byte [][][] closestColor = new byte [64 ][64 ][64 ];
5959 public final int id ;
6060
6161 public Color (final int r , final int g , final int b ) {
0 commit comments