forked from latticexyz/mud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.html
44 lines (36 loc) · 1003 Bytes
/
head.html
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
<style>
.dark .dark\:text-blue-400, .dark, .dark .docs-markdown a:not(.no-link), .dark .dark\:hover\:text-blue-400:hover {
color: #eb4926!important;
}
.dark .dark\:hover\:text-blue-200:hover {
color: #f9ccc2!important;
}
.dark .dark\:bg-blue-400 {
background-color: #eb4926!important;
}
.dark .dark\:bg-dark-550 {
background-color: rgb(255 255 255 / 10%)!important;
}
.dark .dark\:border-dark-600 {
border-color: rgb(255 255 255 / 5%)!important;
}
.dark .dark\:bg-dark-650 {
background-color: #270e09!important;
}
.dark .dark\:bg-dark-850 {
background-color: #000000!important;
}
.dark .dark\:bg-dark-800 {
background-color: #000000!important;
}
.rounded, .rounded-r-lg, .rounded-l {
border-radius: 0!important;
}
</style>
<script>
const themeColor = localStorage.getItem("doc_theme");
if(!themeColor) {
localStorage.setItem("doc_theme", "dark")
document.documentElement.classList.add("dark");
}
</script>