forked from Zipstack/unstract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.css
More file actions
43 lines (32 loc) · 762 Bytes
/
variables.css
File metadata and controls
43 lines (32 loc) · 762 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
:root {
--font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
--white: #FFFFFF;
--black: #000000;
--primary: #092C4C;
--secondary: #0C3861;
--font-color-1: #FFFFFF;
/* font sizes */
--font-size-16: 16px;
--font-size-14: 14px;
/* font weights */
--font-weight-400: 400;
--font-weight-500: 500;
--font-weight-600: 600;
--page-bg-1: #FFFFFF;
--page-bg-2: #e9e9e9;
--page-bg-3: #F5F7F9;
--border-color-1: #E1E1E1;
--border-color-2: #efeaea;
}
.dark {
--white: #000000;
--black: #FFFFFF;
--primary: #092C4C;
--secondary: #0C3861;
--font-color-1: #FFFFFF;
--page-bg-1: #000000;
--page-bg-2: #141414;
--page-bg-3: #111418;
--border-color-1: #1D1D1D;
--border-color-2: #383535;
}