-
Notifications
You must be signed in to change notification settings - Fork 0
/
ink.css
70 lines (63 loc) · 1.42 KB
/
ink.css
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@media (color) {
:root {
--ink: black;
--oil: honeydew;
}
.amber { --oil: lightsalmon }
.blush { --oil: hotpink }
.breeze { --oil: mistyrose }
.foam { --oil: darkturquoise }
.fume { --oil: #d0e }
.gel { --oil: mediumslateblue }
.glow { --oil: #ec0 }
.gush { --oil: violet }
.lava { --oil: chocolate }
.sand { --oil: navajowhite }
.storm { --oil: gainsboro }
.tide { --oil: deepskyblue }
.orca { --oil: mediumorchid }
.love { --oil: #bae }
}
@media (prefers-contrast: less) {
.blush { --oil: lightpink }
.breeze { --oil: bisque }
.fume { --oil: #c0d }
.sand { --oil: peachpuff }
.storm { --oil: silver }
.tide { --oil: dodgerblue }
.amber { --oil: salmon }
}
@media (prefers-contrast: more) {
.foam { --oil: turquoise }
.gel { --oil: mediumpurple }
.glow { --oil: #ee1 }
.gush { --oil: plum }
.lava { --oil: peru }
.orca { --oil: orchid }
}
@media (color) {
.wet * {
background-color: transparent;
color: inherit;
}
.wet :any-link { text-decoration: wavy overline }
.wet :focus { outline: thick double }
.wet ::selection {
background-color: rebeccapurple;
color: lemonchiffon;
}
.blood.blood {
background-color: var(--oil);
color: var(--ink);
}
.bleed.bleed {
background-color: var(--ink);
color: var(--oil);
}
}
@media (prefers-color-scheme:light) {
.bleed.blood {
background-color: var(--oil);
color: var(--ink);
}
}