generated from greenelab/lab-website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path-theme.scss
54 lines (48 loc) · 966 Bytes
/
-theme.scss
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
---
---
// colors
[data-dark="false"] {
--primary: #0795d9;
--secondary: #7dd3fc;
--text: #000000;
--background: #ffffff;
--background-alt: #fafafa;
--light-gray: #e0e0e0;
--gray: #808080;
--dark-gray: #404040;
--overlay: #00000020;
}
[data-dark="true"] {
--primary: #0795d9;
--secondary: #075985;
--text: #ffffff;
--background: #181818;
--background-alt: #1c1c1c;
--light-gray: #404040;
--gray: #808080;
--dark-gray: #b0b0b0;
--overlay: #ffffff10;
}
:root {
// font families
--title: "Barlow", sans-serif;
--heading: "Barlow", sans-serif;
--body: "Barlow", sans-serif;
--code: "Roboto Mono", monospace;
// font sizes
--large: 1.2rem;
--xl: 1.4rem;
--xxl: 1.6rem;
// font weights
--thin: 200;
--regular: 400;
--semi-bold: 500;
--bold: 600;
// text line spacing
--spacing: 2;
--compact: 1.5;
// effects
--rounded: 3px;
--shadow: 0 0 10px 0 var(--overlay);
--transition: 0.2s ease;
}