Refactoring. Ability to specify look and feel for text editor.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / ColorConfig.java
diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/ColorConfig.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/ColorConfig.java
deleted file mode 100644 (file)
index 7bf7f1b..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * 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 ColorConfig {
-
-    public Color normalText = new Color(255, 255, 255);
-    public Color normalBack = new Color(20, 20, 20, 255);
-
-    public Color tabulatorBack = new Color(25, 25, 25, 255);
-
-    public Color cursorText = new Color(255, 255, 255);
-    public Color cursorBack = new Color(255, 0, 0);
-
-    public Color selectedText = new Color(255, 255, 255);
-    public Color selectedBack = new Color(0, 80, 80);
-
-    public Color pageEnd = new Color(70, 70, 0);
-
-}