Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / LookAndFeel.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 /**
10  * A look and feel of a text editor.
11  */
12 public class LookAndFeel {
13
14     public Color foreground = new Color(255, 255, 255);
15     public Color background = new Color(20, 20, 20, 255);
16
17     public Color tabStopBackground = new Color(25, 25, 25, 255);
18
19     public Color cursorForeground = new Color(255, 255, 255);
20     public Color cursorBackground = new Color(255, 0, 0);
21
22     public Color selectionForeground = new Color(255, 255, 255);
23     public Color selectionBackground = new Color(0, 80, 80);
24
25 }