-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUI.java
44 lines (35 loc) · 1.14 KB
/
UI.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.awt.Color;
import java.awt.Font;
/**
* UI contains constants such as color and font for the GUI.
* Color palette by Martin Maderic at https://dribbble.com/shots/17996668-Color-Palette
*/
public class UI {
/**
* Cod Gray
*/
public static final Color FG_MAIN = new Color(21, 21, 21);
public static final Color BG_MAIN = new Color(245, 245, 245);
public static final Color BG_SECONDARY = new Color(255, 255, 255);
/**
* Plantation
*/
public static final Color BUTTON_BG = new Color(54, 79, 77);
/**
* Sulu
*/
public static final Color BUTTON_CLICKED = new Color(216, 237, 126);
/**
* Spectra
*/
public static final Color ACCENT = new Color(64, 98, 94);
/**
* Te Papa Green
*/
public static final Color ACCENT2 = new Color(45, 67, 64);
public static final Color ERROR = new Color(235, 60, 0);
public static final Font HEADER_FONT = new Font("Helvetica", Font.BOLD, 30);
public static final Font SUBHEADER_FONT = new Font("Helvetica", Font.BOLD, 16);
public static final Font TEXT_FONT = new Font("Helvetica", Font.PLAIN, 14);
public static final Font BUTTON_FONT = new Font("Helvetica", Font.PLAIN, 12);
}