Refactoring. Ability to specify look and feel for text editor.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / LookAndFeel.java
diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/LookAndFeel.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/LookAndFeel.java
new file mode 100644 (file)
index 0000000..a7bff24
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Sixth 3D engine. Author: Svjatoslav Agejenko. 
+ * This project is released under Creative Commons Zero (CC0) license.
+ */
+package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
+
+import eu.svjatoslav.sixth.e3d.renderer.raster.Color;
+
+public class LookAndFeel {
+
+    public Color foreground = new Color(255, 255, 255);
+    public Color background = new Color(20, 20, 20, 255);
+
+    public Color tabStopBackground = new Color(25, 25, 25, 255);
+
+    public Color cursorForeground = new Color(255, 255, 255);
+    public Color cursorBackground = new Color(255, 0, 0);
+
+    public Color selectionForeground = new Color(255, 255, 255);
+    public Color selectionBackground = new Color(0, 80, 80);
+
+}