forked from murarisumit/kubernetes-dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelm.sh.css
58 lines (50 loc) · 1.51 KB
/
helm.sh.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
/* ==UserStyle==
@name helmsh_dt
@namespace github.com/openstyles/stylus
@version 0.0.1
@description helm.sh dark theme
@author John Doe
@var color encyclopedia-color "Even more light background color" #555555
@var color base-text-color "Base text color" #fff
@var color pitch-black "Pure black" #000
@var color crx-background "Background color" #0a0a0a
@var color crx-background1 "More light color for background" #262626
@var color crx-foreground "Foreground color" #d4d4d4
==/UserStyle== */
@-moz-document domain("helm.sh") {
* {
background-image: none !important;
background-color: var(--crx-background) !important;
color: var(--base-text-color) !important;
border-color: var(--encyclopedia-color) !important;
}
.navbar-top:after {
background-color: var(--crx-background) !important;
}
.navbar-top li.versioner a.versioner-trigger {
border-width: 0.000 !important;
border-color: var(--crx-background) !important;
}
pre,
pre code,
span:not(.icon) {
background-color: var(--crx-background1) !important;
}
ul[class="current"] .active {
background-color: var(--crx-background1) !important;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: #252121;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
}