| 67 | | public static Color fgcolor = new Color(20,200,20), //used for text, lines etc., accessed globally! FIXME move these into colorscheme! |
| 68 | | bgcolor = new Color(64,128,64,196), //used for transparent backgrounds of most status boxes |
| 69 | | fgcolor2 = new Color(150,150,255), //used for foreground of link status boxes |
| 70 | | bgcolor2 = new Color(40,40,192,196); //used for transparent backgrounds of link status boxes |
| 71 | | ColorScheme cs = ColorScheme.NO_MAP; |
| | 67 | public static Color fgcolor = Configurator.getCOrDefault(new String[]{"colorscheme", "foreground"},20,200,20,255), //most lines |
| | 68 | bgcolor = Configurator.getCOrDefault(new String[]{"colorscheme", "boxes"},64,128,64,196), //used for transparent backgrounds of most status boxes |
| | 69 | fgcolor2 = Configurator.getCOrDefault(new String[]{"colorscheme", "foreground2"},150,150,255,255), //used for foreground of link status boxes |
| | 70 | bgcolor2 = Configurator.getCOrDefault(new String[]{"colorscheme", "boxes2"},40,40,192,196), //used for transparent backgrounds of link status boxes |
| | 71 | backcolor = Configurator.getCOrDefault(new String[]{"colorscheme", "background"},0,0,0,255); //the main background |