-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPallet.java
More file actions
15 lines (14 loc) · 738 Bytes
/
Copy pathPallet.java
File metadata and controls
15 lines (14 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import java.awt.Color;
public class Pallet {
public static final Color bitterSweet = new Color(255, 89, 94);
public static final Color rose = new Color(255, 105, 109);
public static final Color wornRed = new Color(122, 33, 35);
public static final Color sunGlow = new Color(255, 202, 58);
public static final Color yellowGreen = new Color(138, 201, 38);
public static final Color steelBlue = new Color(25, 130, 196);
public static final Color blueJeans = new Color(93, 173, 226);
public static final Color ultraViolet = new Color(106, 76, 147);
public static final Color mistBlack = new Color(38, 38, 38);
public static final Color empty = new Color(0, 0, 0, 0);
public static final Color nearBlack = new Color(30, 30, 30);
}