diff options
author | Ben Burwell <ben.burwell@trifecta.com> | 2016-11-20 02:38:23 -0500 |
---|---|---|
committer | Ben Burwell <ben.burwell@trifecta.com> | 2016-11-20 02:39:13 -0500 |
commit | 7411558abf4aba7d600bb9fc713d36032e4a6df3 (patch) | |
tree | 56ccca55dc7175bf3bca88e123334ed3da878333 /src/main/java/com/benburwell/planes/gui/GraphicsTheme.java | |
parent | f1e32ed443bafc03448f0f3b36c712b9293e71e7 (diff) |
Show routes
Diffstat (limited to 'src/main/java/com/benburwell/planes/gui/GraphicsTheme.java')
-rw-r--r-- | src/main/java/com/benburwell/planes/gui/GraphicsTheme.java | 12 |
1 files changed, 12 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 index 02d75ba..f4a6525 100644 --- a/src/main/java/com/benburwell/planes/gui/GraphicsTheme.java +++ b/src/main/java/com/benburwell/planes/gui/GraphicsTheme.java @@ -24,4 +24,16 @@ public class GraphicsTheme { public static final Color CYAN = new Color(51, 133, 158); public static final Color GREEN = new Color(42, 168, 137); } + + public static class Styles { + public static final Color MAP_BACKGROUND_COLOR = Colors.BASE_0; + public static final Color MAP_RANGE_COLOR = Colors.BASE_3; + public static final Color MAP_NAVAID_COLOR = Colors.VIOLET; + public static final Color MAP_AIRPORT_COLOR = Colors.MAGENTA; + public static final Color MAP_ROUTE_COLOR = Colors.BASE_2; + public static final Color MAP_LABEL_COLOR = Colors.BLUE; + public static final Color MAP_PLANE_MIN_COLOR = Colors.RED; + public static final Color MAP_PLANE_MAX_COLOR = Colors.GREEN; + public static final Color MAP_PLANE_TRACK_COLOR = Colors.BASE_4; + } } |