-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (37 loc) · 1012 Bytes
/
styles.css
File metadata and controls
40 lines (37 loc) · 1012 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
/* light theme colors */
.light-theme {
/* ------- colors ------- */
--primary-color: #27272a;
--secondary-color: #65656d;
--tertiary-color: #929292;
--quaternary-color: #e4e4e7;
--link-color: #14b8a6;
/* --border-color: #e9e6e6; */
--border-color: #f4f4f5;
--background: #fff;
--hover-background: #f8f8f8;
--secondary-background: #fbfdfd;
/* ---------------------- */
/* ------- fonts ------- */
--primary-font: "Heebo", sans-serif;
--secondary-font: "Roboto", sans-serif;
/* --------------------- */
}
/* dark theme colors */
.dark-theme {
/* ------- colors ------- */
--primary-color: #fefeff;
--secondary-color: #d8d8db;
--tertiary-color: #9c9c9c;
--quaternary-color: #1e1e1f;
--link-color: #14b8a6;
--border-color: #111331;
--background: #0e182c;
--hover-background: #0e182c;
--secondary-background: #101e38;
/* ---------------------- */
/* ------- fonts ------- */
--primary-font: "Heebo", sans-serif;
--secondary-font: "Roboto", sans-serif;
/* --------------------- */
}