summaryrefslogtreecommitdiff
path: root/src/main/java/com/benburwell/planes/gui/GraphicsTheme.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/benburwell/planes/gui/GraphicsTheme.java')
-rw-r--r--src/main/java/com/benburwell/planes/gui/GraphicsTheme.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/main/java/com/benburwell/planes/gui/GraphicsTheme.java b/src/main/java/com/benburwell/planes/gui/GraphicsTheme.java
new file mode 100644
index 0000000..cece138
--- /dev/null
+++ b/src/main/java/com/benburwell/planes/gui/GraphicsTheme.java
@@ -0,0 +1,27 @@
+package com.benburwell.planes.gui;
+
+import java.awt.*;
+
+/**
+ * Created by ben on 11/18/16.
+ */
+public class GraphicsTheme {
+ public static class Colors {
+ public static final Color BASE_0 = new Color(12, 16, 20);
+ public static final Color BASE_1 = new Color(17, 21, 28);
+ public static final Color BASE_2 = new Color(9, 31, 46);
+ public static final Color BASE_3 = new Color(10, 55, 73);
+ public static final Color BASE_4 = new Color(36, 83, 97);
+ public static final Color BASE_5 = new Color(89, 156, 171);
+ public static final Color BASE_6 = new Color(153, 209, 206);
+ public static final Color BASE_7 = new Color(211, 235, 233);
+ public static final Color RED = new Color(194, 49, 39);
+ public static final Color ORANGE = new Color(210, 105, 55);
+ public static final Color YELLOW = new Color(237, 180, 67);
+ public static final Color MAGENTA = new Color(136, 140, 166);
+ public static final Color VIOLET = new Color(78, 81, 102);
+ public static final Color BLUE = new Color(25, 84, 102);
+ public static final Color CYAN = new Color(51, 133, 158);
+ public static final Color GREEN = new Color(42, 168, 137);
+ }
+}