From a9e12f6c508810604c8c91ee15451776b08ce1a1 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Mon, 22 Apr 2019 07:41:56 -0400 Subject: [PATCH] Camera capslock fix --- 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