Changed license to Creative Commons Zero (CC0).
[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 *
6  */
7
8 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
9
10 import eu.svjatoslav.sixth.e3d.renderer.raster.Color;
11
12 public class ColorConfig {
13
14     public Color normalText = new Color(255, 255, 255);
15     public Color normalBack = new Color(20, 20, 20, 255);
16
17     public Color tabulatorBack = new Color(25, 25, 25, 255);
18
19     public Color cursorText = new Color(255, 255, 255);
20     public Color cursorBack = new Color(255, 0, 0);
21
22     public Color selectedText = new Color(255, 255, 255);
23     public Color selectedBack = new Color(0, 80, 80);
24
25     public Color pageEnd = new Color(70, 70, 0);
26
27 }