-
-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathindex.css
More file actions
29 lines (26 loc) · 618 Bytes
/
index.css
File metadata and controls
29 lines (26 loc) · 618 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
@import "normalize.css";
html,
body {
font-family: "Rubik", Helvetica, Arial, sans-serif;
height: 100vh;
margin: 0;
padding: 0;
}
html[data-theme="dark"] {
--bg-color: #121212;
--text-color: #ffffff;
--border-color: #444444;
--active-bg-color: #333333;
--active-text-color: #ffffff;
--hover-bg-color: #444444;
--hover-text-color: #ffffff;
}
html[data-theme="light"] {
--bg-color: #ffffff;
--text-color: #121212;
--border-color: #ddd;
--active-bg-color: #e0e0e0;
--active-text-color: #1b2540;
--hover-bg-color: #e0e0e0;
--hover-text-color: #050c40;
}