summaryrefslogtreecommitdiffstats
path: root/src/Palette.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Palette.java')
-rw-r--r--src/Palette.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Palette.java b/src/Palette.java
deleted file mode 100644
index ee4d747..0000000
--- a/src/Palette.java
+++ /dev/null
@@ -1,15 +0,0 @@
-import java.awt.Color;
-
-public class Palette {
- public final static Color BLACK = new Color(29, 31, 33);
- public final static Color WHITE = new Color(197, 200, 198);
- public final static Color WHITE_T = new Color(197, 200, 198, 200);
- public final static Color RED = new Color(165, 66, 66);
- public final static Color YELLOW = new Color(250, 198, 116);
- public final static Color GREEN = new Color(181, 189, 104);
- public final static Color DARKGREEN = new Color(140, 148, 64);
- public final static Color BLUE = new Color(95, 129, 157);
- public final static Color ORANGE = new Color(222, 147, 95);
- public final static Color ORANGE_T = new Color(222, 147, 95, 100);
- public final static Color BROWN = new Color(51, 41, 33);
-}