From 89b25e7cc97f6fe221dfd41c4d463500f8a31bc1 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Tue, 25 Jun 2019 23:58:09 -0400 Subject: [PATCH] Edit panel pin state. --- Constants.java | 23 +++++++++++++++++++++-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git a/Constants.java b/Constants.java index 105a701..5904c06 100644 --- a/Constants.java +++ b/Constants.java @@ -7,7 +7,6 @@ public interface Constants { - //public static final double pi = math.PI; //public static final double radian = 0.01745329; public static final String EOL = System.getProperty("line.separator"); @@ -15,6 +14,7 @@ public static final String imageTypes[] = { "gif", "tga", "iff", "ppm", "pgm", "png", "jpeg", "tiff", "sys", "jpg" }; + public static final int beigeTheme[][] = { { 104, 95, 90 @@ -34,5 +34,24 @@ 255, 255, 255 } }; - + public static final int yellowTheme[][] = { + { + 104, 95, 90 + }, { + 164, 150, 145 // + }, { + 204, 190, 185 + }, { + 111, 111, 111 + }, { + 163, 159, 159 + }, { + //240, 226, 200 // + 240, 226, 200 // + }, { + 0, 0, 0 + }, { + 255, 255, 255 + } + }; } -- Gitblit v1.6.2