-
Notifications
You must be signed in to change notification settings - Fork 0
/
themes.css
executable file
·63 lines (49 loc) · 1.02 KB
/
themes.css
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.christmasTheme {
font-family: 'Charmonman', cursive;
color: rgb(107, 107, 107);
font-size: 14px;
}
.christmasTheme h1,
h2,
h3 {
font-family: 'Lora', serif;
color: rgb(172, 5, 5);
text-shadow: 2px 1px rgba(17, 17, 17, 0.678);
margin-bottom:10px;
}
.halloweenTheme {
font-family: 'Bree Serif', serif;
color: rgb(211, 144, 0);
font-size: 16px;
}
.halloweenTheme h1,
h2,
h3 {
font-family: 'Shadows Into Light', cursive;
text-shadow: 1px 1px rgba(145, 145, 145, 0.678);
color: rgb(5, 77, 11);
margin-bottom:10px;
}
.birthdayTheme {
font-family: 'Ropa Sans', sans-serif;
color: rgb(252, 150, 252);
font-size: 16px;
}
.birthdayTheme h1,
h2,
h3 {
font-family: 'Courgette', cursive;
text-shadow: 1px 1px rgba(145, 145, 145, 0.678);
color: rgb(48, 177, 236);
margin-bottom:10px;
}
.defaultTheme {
font-family: 'arial';
color: rgb(0, 0, 0);
}
.defaultTheme h1,
h2,
h3 {
font-family: 'Archivo Black', sans-serif;
color: rgb(0, 0, 0);
}