Formatting update
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / ColorConfig.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
6
7 import eu.svjatoslav.sixth.e3d.renderer.raster.Color;
8
9 public class ColorConfig {
10
11     public Color normalText = new Color(255, 255, 255);
12     public Color normalBack = new Color(20, 20, 20, 255);
13
14     public Color tabulatorBack = new Color(25, 25, 25, 255);
15
16     public Color cursorText = new Color(255, 255, 255);
17     public Color cursorBack = new Color(255, 0, 0);
18
19     public Color selectedText = new Color(255, 255, 255);
20     public Color selectedBack = new Color(0, 80, 80);
21
22     public Color pageEnd = new Color(70, 70, 0);
23
24 }