-
Notifications
You must be signed in to change notification settings - Fork 0
/
reef.css
42 lines (35 loc) · 915 Bytes
/
reef.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
.reef * {
background-color: transparent;
color: inherit;
}
.reef.reef {
background-color: var(--reef);
color: var(--free);
}
.tide.tide {
color: var(--reef);
background-color: var(--free);
}
.reef ::selection {
background-color: violet;
color: midnightblue;
}
.tide ::selection {
background-color: powderblue;
color: mediumblue;
}
.clam.clam,
.clam [class] {
color: transparent;
}
.brine { filter: hue-rotate(-120deg) }
.trine { filter: hue-rotate(120deg) }
.flap { border-color: currentColor; }
.sponge { border-color: transparent; }
:root { --free: #302; --reef: aqua; }
.reef [href] { --free: aquamarine; --reef: indigo; }
.wrasse [href] { --free: aqua; --reef: rebeccapurple; }
.coral.coral { --free: #302; --reef: coral; }
.dream.dream { --free: aqua; --reef: rebeccapurple; }
.stony.stony { --free: silver; --reef: indigo; }
.wrasse.wrasse { --free: aquamarine; --reef: indigo; }