-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalue.css
More file actions
43 lines (36 loc) · 973 Bytes
/
value.css
File metadata and controls
43 lines (36 loc) · 973 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
41
42
43
/* Light mode */
:root {
color-scheme: light;
--background-color: hsl(0, 0%, 100%);
--text-color: hsl(0, 0%, 10%);
--button-color: var(--text-color);
/* Colors */
--yellow: hsl(40, 74%, 54%);
--yellow-text: var(--text-color);
--blue: hsl(240, 63%, 48%);
--blue-text: var(--background-color);
--red: hsl(0, 55%, 40%);
--red-text: var(--background-color);
--gray: hsl(0, 0%, 35%);
--gray-text: var(--background-color);
--green: hsl(109, 37%, 52%);
/* Values */
--container-gap: 10px;
--border-width: 2px;
}
@media (prefers-color-scheme: dark) {
/* Dark mode */
:root {
color-scheme: dark;
--background-color: hsl(0, 0%, 0%);
--text-color: hsl(0, 0%, 90%);
/* Colors */
--yellow-text: var(--background-color);
--blue: hsl(230, 58%, 41%);
--blue-text: var(--text-color);
--red: hsl(0, 49%, 49%);
--gray: hsl(0, 0%, 25%);
--gray-text: var(--text-color);
--green: hsl(119, 38%, 33%);
}
}