-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.java
More file actions
44 lines (33 loc) · 1.68 KB
/
Config.java
File metadata and controls
44 lines (33 loc) · 1.68 KB
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.*;
// Config is a file containing all the constants needed for this project
public class Config {
// Colors to change the color scheme in settings
public static Color red=new Color(255, 0, 0);
public static Color blue=new Color(0, 0, 255);
public static Color green=new Color(0, 128, 0);
public static Color grey=new Color(128, 128, 128);
public static Color lightGrey=new Color(220, 220, 220);
public static Color black=new Color(0, 0, 0);
public static Color darkGrey=new Color(105,105,105);
public static Color gold=new Color(212,175,55);
public static Color white=new Color(255, 255, 255);
public static Color lightBlue=new Color(135,206,250);
public static Color otherLightBlue=new Color(173,216,230);
public static Color steelBlue=new Color(176,196,222);
public static Color powderBlue=new Color(176,224,230);
public static Color aliceBlue=new Color(240,248,255);
public static Color smoke=new Color(245,245,245);
public static Color purple=new Color(138,43,226);
public static Color mediumPurple=new Color(123,104,238);
// Screen Dimensions
public static int screenWidth=1200;
public static int screenHeight=800;
// Font sizes
public static final Font font1 = new Font("SansSerif", Font.PLAIN, 40);
public static final Font font2 = new Font("SansSerif", Font.ITALIC, 20);
public static final Font font3 = new Font("SansSerif", Font.PLAIN, 30);
public static final Font font4 = new Font("SansSerif", Font.PLAIN, 17);
public static final Font font5 = new Font("SansSerif", Font.BOLD, 17);
public static final int numberOfPoints=1000;
public static String ans = "";
}