forked from art-class/v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.css
87 lines (84 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body[theme="rose_gold"] {
--text-color: #ffffff;
--background: #f3a683;
--navbar: #e79a58;
--accent: #ff9a8b;
}
body[theme="midnight"] {
--text-color: white;
--background: #1a2023;
--navbar: #0e1213;
--accent: #0284d4;
}
body[theme="main"] {
--text-color: white;
--background: #1a2023;
--navbar: #0e1213;
--accent: #0284d4;
}
body[theme="lgbtq"] {
--text-color: black;
--background: url("https://www.rd.com/wp-content/uploads/2021/05/traditional-gay-pride-flag.jpg?resize=2048");
--navbar: #bcf3f6;
--accent: #DDF9FA;
}
body[theme="forest"] {
--text-color: white;
--background: #2c3e50;
--navbar: #1c221d;
--accent: #27ae60;
}
body[theme="ocean"] {
--text-color: white;
--background: #34495e;
--navbar: #2d1a79;
--accent: #2980b9;
}
body[theme="amoled"] {
--text-color: #ebebeb;
--background: #000000;
--navbar: #0f0f0f;
--accent: #0284d4;
}
body[theme="white"] {
--text-color: #000000;
--background: #ffffff;
--navbar: #dbdbdb;
--accent: #0284d4;
}
body[theme="sunset"] {
--text-color: #ffffff;
--background: linear-gradient(#f08b08, #f15e08);
--navbar: #f09f08;
--accent: #0284d4;
}
body[theme="flash"] {
--text-color: #ffffff;
--background: #ffffff;
--navbar: #ffffff;
--accent: #ffffff;
}
body[theme="matrix"] {
--text-color: #e0e0e0;
--background: linear-gradient(#000000, #006b09);
--navbar: #080808;
--accent: #0284d4;
}
body[theme="beach"] {
--text-color: #000000;
--background: #f6d7b0;
--navbar: #87CEEB;
--accent: #0284d4;
}
body[theme="murica"] {
--text-color: #000000;
--background: linear-gradient(#e21f1f, #2233cf);
--navbar: #e22e2e;
--accent: #0284d4;
}
body[theme="modern"] {
--text-color: #000000;
--background: url("https://yourcatholicfoundation.org.au/wp-content/uploads/2019/09/Main-Image-bg.jpg");
--navbar: #313131;
--accent: #0284d4;
}