-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththemes.css
64 lines (55 loc) · 2 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
:root {
/* === General theme colors ===*/
--color-text-primary: #1b1b1b;
--shadow-text-primary: #ffffff;
--color-code-primary: #fafafa;
--color-title-a-primary: #0070f3;
--bg-primary: #fbfbfb;
/* === Card theme colors ===*/
--color-card-primary: #ffffff;
--shadow-card-primary: rgba(0, 0, 0, 0.2);
/* === Accordion theme colors + background === */
--color-accordion-panel: rgba(255, 255, 255, 0.8);
--color-accordion-button: rgba(251, 251, 251, 0.882);
--border-accordion-button: lightgray;
/* === Button theme colors === */
/* general + hero section */
--button-signup-primary: #ff6060;
--button-signup-secondary: #1b1b1b;
--button-signup-hover: #f87575;
--button-signup-text: #ffffff;
--button-learnmore-primary: #f8f8f8;
--button-learnmore-secondary: #a0a0a0;
/* volunteers section */
--button-mentors-primary: #ffdd9e;
--button-mentors-secondary: #debd7e;
--button-volunteers-primary: hsl(108deg 46% 79%);
--button-volunteers-secondary: #8fbd82;
/* sponsors section */
--button-sponsor-primary: #ffd5e5;
--button-sponsor-secondary: #ffbddc;
/* === Hero page theme colors === */
--color-text-hero: #191b1f;
/* === Team page theme colors === */
--border-picture-primary: #ffffff;
--border-picture-secondary: #ffa500;
--shadow-picture-primary: rgba(0, 0, 0, 0.2);
/* === Intro page theme colors === */
--color-text-infocard: #ffffff;
/* === Tracks theme colors === */
--color-text-tracks: #ffffff;
--bg-arrow: #676767;
--bg-contain: #1b1b1b;
--shadow-contain: #e6e5e5;
--color-mobile: black;
/* === Footer theme colors === */
--color-footer-primary: #00000081;
--color-footer-secondary: #212121;
--color-link-primary: #ffffff;
--color-link-secondary: #ff6060;
/* === Background images === */
--bg-accordion-panel: url("../public/backgrounds/arches.png");
--bg-hero: url(../public/backgrounds/cherryblossomwebp.png);
--bg-intro: url("../public/backgrounds/gravel_crop.png");
--bg-infocard: url("../public/backgrounds/brushstroke.png");
}