Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
3kh0
GitHub Repository: 3kh0/3kh0.github.io-replit
Path: blob/main/css/themes.css
617 views
1
body[theme="default"] {
2
--background: #1c1c1c;
3
--theme: #4caf50;
4
--text: white;
5
--text-secondary: black;
6
}
7
8
body[theme="light"] {
9
--background: white;
10
--theme: #4caf50;
11
--text: black;
12
--text-secondary: black;
13
}
14
15
body[theme="orchid"] {
16
--background: #1c1c1c;
17
--theme: #b625cc;
18
--text: white;
19
--text-secondary: white;
20
}
21
22
body[theme="sky"] {
23
--background: #1c1c1c;
24
--theme: #0084ff;
25
--text: white;
26
--text-secondary: black;
27
}
28
29
body[theme="winter"] {
30
--background: linear-gradient(to right, #2377a4, #79c0d7), #79c0d7;
31
--theme: #3da341;
32
--text: white;
33
--text-secondary: white;
34
}
35
36
body[theme="winter"] .navbar {
37
box-shadow: none;
38
}
39
40
body[theme="nebelung"] {
41
--background: #dabc9a;
42
--text: black;
43
--text-secondary: white;
44
--theme: linear-gradient(to right, #3d2d1e, #190f05);
45
}
46
47
body[theme="nebelung"] .navbar {
48
box-shadow: 0 5px 200px #3d2d1e;
49
animation: nebelungBreathing 5s ease-out infinite normal;
50
}
51
52
body[theme="piplup"] {
53
--background: #5bacee;
54
--theme: #0026ff;
55
--text: white;
56
--text-secondary: black;
57
}
58
59
@keyframes nebelungBreathing {
60
0% {
61
box-shadow: 0 5px 170px #3d2d1e;
62
}
63
64
25% {
65
box-shadow: 0 5px 200px #3d2d1e;
66
}
67
68
60% {
69
box-shadow: 0 5px 170px #3d2d1e;
70
}
71
72
100% {
73
box-shadow: 0 5px 170px #3d2d1e;
74
}
75
}
76
77
@-webkit-keyframes nebelungBreathing {
78
0% {
79
box-shadow: 0 5px 170px #3d2d1e;
80
}
81
82
25% {
83
box-shadow: 0 5px 200px #3d2d1e;
84
}
85
86
60% {
87
box-shadow: 0 5px 170px #3d2d1e;
88
}
89
90
100% {
91
box-shadow: 0 5px 170px #3d2d1e;
92
}
93
}
94
95
96
body[theme="forternish"] {
97
--background: #003443;
98
--theme: linear-gradient(15deg, #82c4e4, #60f108);
99
--text: white;
100
--text-secondary: black;
101
}
102
103
body[theme="forternish"] * {
104
font-family: Comic Sans MS;
105
}
106
107
body[theme="northernfish"] {
108
--background: linear-gradient(to bottom right, #91fa9e, #0ec9f8);
109
--theme: #3778ff;
110
--text: black;
111
--text-secondary: black;
112
}
113
114
body[theme="northernfish"] .navbar {
115
box-shadow: none !important;
116
}
117
118
body[theme="northernfish"] .navitems {
119
background: transparent;
120
}
121
122
body[theme="northernfish"]::-webkit-scrollbar {
123
background: #0ec9f8;
124
}
125
126
body[theme="forgor"] {
127
--background: #efefef;
128
--theme: #d7d700;
129
--text: #d7d700;
130
--text-secondary: #efefef;
131
}
132
133
body[theme="monotonium"] {
134
--background: white;
135
--theme: black;
136
--text: black;
137
--text-secondary: white;
138
}
139
140
body[theme="monotonium-dark"] {
141
--background: black;
142
--theme: white;
143
--text: white;
144
--text-secondary: black;
145
}
146
147
body[theme="concrete"] {
148
--background: gray;
149
--theme: white;
150
--text: white;
151
--text-secondary: grey;
152
}
153
154
body[theme="sunset"] {
155
--background: #1c1c1c;
156
--theme: #e83141;
157
--text: white;
158
--text-secondary: black;
159
}
160
161
html,body {
162
color: var(--text);
163
}
164