-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecssentric.config.css
More file actions
52 lines (41 loc) · 1.17 KB
/
ecssentric.config.css
File metadata and controls
52 lines (41 loc) · 1.17 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* configuration values */
:root {
/* general */
--bg: #444;
--bg-content: #333;
--bg-accent: #222;
--text-color: #ddd;
--action-primary: #29d;
--action-secondary: #ccc;
--action-danger: #f35;
--action-warn: #FFF568;
--action-info: #3df;
--font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif;
/* messages */
--color-info: #000;
--color-border-info: #cef;
--color-bg-info: var(--action-info);
--color-warn: #000;
--color-border-warn: #ffc;
--color-bg-warn: var(--action-warn);
--color-error: #eee;
--color-border-error: #fdf;
--color-bg-error: var(--action-danger);
/* tables */
--color-border-table: #222;
--color-bg-th: #222;
/* forms */
--bg-input: hsl(from var(--bg-content) h s 33.33%);
--bg-input-disabled: var(--bg-content);
--border-input-color: hsl(from var(--bg-content) h s 0%);
--border-input: 1px solid var(--border-input-color);
--border-input-disabled: 1px solid var(--border-input-color);
--text-input: var(--text-color);
--text-input-disabled: hsl(from var(--bg-content) h s 33.33%);
/* layout */
--gutter: 2rem;
--radius: 0.4rem;
/* scrollbars */
--color-bg-scrollbar: var(--bg);
--color-thumb-scrollbar: var(--bg-accent);
}