-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvars.css
More file actions
30 lines (28 loc) · 1.05 KB
/
vars.css
File metadata and controls
30 lines (28 loc) · 1.05 KB
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
html:root {
--accent-color: #543fd7;
--bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-serif: Georgia, serif;
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
html[data-theme='light'] {
--background-color: #fff;
--alternate-background-colour: #f7f7f9;
--text-color: #121416d8;
--text-color-light: #777676bb;
--link-color: var(--accent-color);
--masthead-color: var(--accent-color);
--masthead-text: #fff;
--button-color: #263238;
--button-text: #fff;
}
html[data-theme='dark'] {
--background-color: #212a2e;
--alternate-background-colour: #263238;
--text-color: #F7F8F8;
--text-color-light: #8A8F98;
--link-color: #828fff;
--masthead-color: #212a2e;
--masthead-text: #fff;
--button-color: var(--accent-color);
--button-text: #fff;
}