-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrozen.css
More file actions
39 lines (34 loc) · 862 Bytes
/
frozen.css
File metadata and controls
39 lines (34 loc) · 862 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
:root {
--tape-white: #f5f5f5;
--tape-black: #090909;
--tape-pink: #fbbfff;
--tape-yellow: #eee833;
--tape-blue: #11dff1;
--tape-green: #44f477;
}
.tape-white { --tape-hex: var(--tape-white) }
.tape-blue { --tape-hex: var(--tape-blue) }
.tape-pink { --tape-hex: var(--tape-pink) }
.tape-green { --tape-hex: var(--tape-green) }
.tape-yellow { --tape-hex: var(--tape-yellow) }
.tape-clean:not(.tape-unclean),
.tape-clean :not(.tape-unclean) {
background: transparent;
color: inherit;
}
.tape-flat:not(.tape-unflat),
.tape-flat :not(.tape-unflat) {
border-color: transparent;
}
.tape-blue,
.tape-pink,
.tape-green,
.tape-yellow,
.tape-white {
background: var(--tape-hex) !important;
color: var(--tape-black) !important;
}
.tape-black {
background: var(--tape-black) !important;
color: var(--tape-hex, var(--tape-white)) !important;
}