-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththemes.css
More file actions
97 lines (83 loc) · 1.81 KB
/
themes.css
File metadata and controls
97 lines (83 loc) · 1.81 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
@media (min-width: 600px) {
#__app:before,
#__app:after {
opacity: 0.2;
}
}
#__app[data-theme] {
background: #000;
backdrop-filter: blur(20px);
}
#__app[data-theme]:after,
#__app[data-theme]:before {
content: "";
top: -20%;
left: -50%;
width: 170vw;
height: 120vw;
position: fixed;
z-index: -1;
filter: blur(120px);
border-radius: 100%;
}
#__app[data-theme]:before {
top: unset;
bottom: 0;
left: 50%;
z-index: -1;
}
[data-theme="--pearl"]:after {
background: rgba(255, 0, 170, 0.274);
}
[data-theme="--pearl"]:before {
background: rgb(252, 11, 135);
}
[data-theme="--peach"]:before {
background: rgba(255, 30, 0, 0.274);
left: -50% !important;
}
[data-theme="--peach"]:after {
background: rgb(252, 174, 111);
}
[data-theme="--rose"]:before {
background: rgba(168, 26, 204, 0.274);
left: -70% !important;
}
[data-theme="--rose"]:after {
background: rgb(192, 5, 36);
}
[data-theme="--quantum"]:before {
background: rgba(0, 4, 255, 0.274);
left: -70% !important;
}
[data-theme="--quantum"]:after {
background: rgb(255, 0, 43);
}
[data-theme="--grass"]:before {
background: rgba(50, 25, 251, 0.274);
left: -70% !important;
}
[data-theme="--grass"]:after {
background: rgb(151, 52, 205, 0.7);
}
[data-theme="--orchin"]:before {
background: rgba(255, 0, 140, 0.274);
left: -70% !important;
}
[data-theme="--orchin"]:after {
background: rgb(252, 124, 5);
}
[data-theme="--thanos"]:before {
background: rgba(204, 0, 255, 0.274);
left: -70% !important;
}
[data-theme="--thanos"]:after {
background: rgb(5, 9, 252);
}
[data-theme="--gold"]:before {
background: rgba(255, 238, 0, 0.274);
}
[data-theme="--gold"]:after {
background: rgb(252, 227, 5);
left: -70% !important;
}