-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColours.java
More file actions
27 lines (23 loc) · 834 Bytes
/
Colours.java
File metadata and controls
27 lines (23 loc) · 834 Bytes
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
import java.awt.*;
/**
* Colours class of Slide Into Highschool, holds colour and font variables
*
* <h2>Course Info:</h2>
* ICS4UP with Krasteva, V.
* Date: June 1st, 2023
* Time Spent: 10 min
* @version 1
* @author Charlie To, Milena Mofrad
*/
public class Colours {
/** background color */
public static Color backgroundBlue = new Color(16, 128, 177);
public static Color darkerBlue =new Color(0, 44, 71);
/** large font */
public static Font largeSerifFont = new Font("Serif", Font.BOLD, 50);
public static Font title = new Font ("Roboto", Font.BOLD, 40);
public static Font title2 = new Font ("Roboto", Font.BOLD, 35);
/** medium font */
public static Font small = new Font ("Roboto", Font.PLAIN, 20);
public static Font mediumSerifFont = new Font("Serif", Font.BOLD, 35);
}