generated from numbpage/page
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtape.css
85 lines (73 loc) · 1.53 KB
/
tape.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
75
76
77
78
79
80
81
82
83
84
85
/*
https://s9a.page/tape remix
*/
:root {
--tape-white: #f5f5f5;
--tape-black: #090909;
--tape-pink: #fbbfff;
--tape-yellow: #eee833;
--tape-blue: #11dff1;
--tape-green: #44f477;
}
@media not (prefers-contrast: more) {
:root {
--tape-white: #e0e0e0;
--tape-black: #0e0e0e;
}
}
.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-clash),
.tape-clean :not(.tape-clash) {
background: transparent;
color: inherit;
}
.tape-flat { border-color: transparent }
.tape-flap { border-color: currentColor }
.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;
}
.tape-erase,
.tape-erase * {
color: transparent !important;
}
/* ¡! */
::selection {
background: blueviolet;
color: cyan;
}
.tape-black ::selection {
color: blueviolet;
background: cyan;
}
.tape-black:focus {
outline-color: var(--tape-black);
}
.naranja { --tape-hex: orange }
.nurple { --tape-hex: plum }
.blurple { --tape-black: #518 }
.bae { --tape-hex: #bae }
.roygbiv {
background-image: linear-gradient(
.25turn,
coral,
orange,
var(--tape-yellow),
var(--tape-green),
var(--tape-blue),
#b8e,
violet
) !important;
}