188a874dbcdc46e09995d8b65f54e1da78dc9a6f
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / ColorConfig.java
1 /*
2  * Sixth 3D engine. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 3 of the GNU Lesser General Public License
6  * or later as published by the Free Software Foundation.
7  *
8  */
9
10 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
11
12 import eu.svjatoslav.sixth.e3d.renderer.raster.Color;
13
14 public class ColorConfig {
15
16     public Color normalText = new Color(255, 255, 255);
17     public Color normalBack = new Color(20, 20, 20, 255);
18
19     public Color tabulatorBack = new Color(25, 25, 25, 255);
20
21     public Color cursorText = new Color(255, 255, 255);
22     public Color cursorBack = new Color(255, 0, 0);
23
24     public Color selectedText = new Color(255, 255, 255);
25     public Color selectedBack = new Color(0, 80, 80);
26
27     public Color pageEnd = new Color(70, 70, 0);
28
29 }