-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathvariables.css
More file actions
28 lines (25 loc) · 775 Bytes
/
variables.css
File metadata and controls
28 lines (25 loc) · 775 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
:root {
/* Font */
--font-family: sans-serif;
--base-font-size: 18px;
--line-height: 1.5;
/* Layout */
--body-min-margin: 16px; /* Left margin and right margin */
--body-available-width: calc(
100% - 2 * var(--body-min-margin)
); /* Mobile width */
--body-max-width: 768px; /* Desktop width */
/* Color, see https://github.com/morhetz/gruvbox */
/* Light theme */
--background-color-light: #fbf1c7;
--background-color1-light: #ebdbb2;
--foreground-color-light: #3c3836;
--foreground-color3-light: #665c54;
--accent-color-light: #af3a03;
/* Dark theme */
--background-color-dark: #282828;
--background-color1-dark: #3c3836;
--foreground-color-dark: #ebdbb2;
--foreground-color3-dark: #bdae93;
--accent-color-dark: #fe8019;
}