generated from webmural/blay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hi.css
74 lines (68 loc) · 1.43 KB
/
hi.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
71
72
73
74
/*
opensource ooze color
https://s9a.page/ooze
https://s9a.org/ooze
*/
:root {
--heat: rgb(250, 50, 150);
--jupe: rgb(240, 180, 30);
--volt: rgb(240, 240, 30);
--lawn: rgb(90, 210, 90);
--moss: rgb(120, 210, 210);
--wind: rgb(150, 210, 240);
--teal: rgb(90, 180, 210);
--rain: rgb(90, 180, 270);
--pour: rgb(90, 150, 240);
--pulp: rgb(180, 90, 240);
--pynk: rgb(240, 120, 330);
--punk: rgb(270, 120, 330);
--ooze: rgb(210, 210, 210);
--xxze: rgb(30, 10, 20);
--oooo: var(--ooze);
--xxxx: var(--xxze);
}
.ooze.ooze {
--oooo: var(--ooze);
--xxxx: var(--xxze);
background-color: var(--ooze);
color: var(--xxze);
}
.xxze.xxze {
--oooo: var(--xxze);
--xxxx: var(--ooze);
background-color: var(--xxze);
color: var(--ooze);
}
::selection {
background: var(--xxxx);
color: var(--oooo);
}
.heat { --ooze: var(--heat) }
.jupe { --ooze: var(--jupe) }
.volt { --ooze: var(--volt) }
.lawn { --ooze: var(--lawn) }
.moss { --ooze: var(--moss) }
.wind { --ooze: var(--wind) }
.teal { --ooze: var(--teal) }
.rain { --ooze: var(--rain) }
.pour { --ooze: var(--pour) }
.pulp { --ooze: var(--pulp) }
.pynk { --ooze: var(--pynk) }
.punk { --ooze: var(--punk) }
.spectra {
background-image: linear-gradient(
.75turn,
var(--pulp),
var(--pynk),
var(--punk),
var(--heat),
var(--jupe),
var(--volt),
var(--lawn),
var(--moss),
var(--wind),
var(--teal),
var(--rain),
var(--pour)
);
}