-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.css
More file actions
116 lines (106 loc) · 3.15 KB
/
Copy pathtypedoc.css
File metadata and controls
116 lines (106 loc) · 3.15 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
:root {
--dark-color-background: #1f252b;
--dark-color-secondary-background: #1f252b;
--dark-color-text: #b5bac4;
--dark-color-text-aside: var(--dark-color-text);
--dark-color-link: #00aff4;
--dark-color-menu-divider: #272e36;
--dark-color-menu-divider-focus: #272e36;
--dark-color-menu-label: #707070;
--dark-color-panel: #262e35;
--dark-color-panel-divider: #272e36;
--dark-color-comment-tag: #dcddde;
--dark-color-comment-tag-text: #2f3136;
--dark-color-ts: #c97dff;
--dark-color-ts-interface: #7ec470;
--dark-color-ts-enum: #c4ae70;
--dark-color-ts-class: #708cc4;
--dark-color-ts-private: #c4709a;
--dark-color-toolbar: #1f252b;
--dark-color-toolbar-text: var(--dark-color-text);
--dark-icon-filter: invert(1);
--dark-code-background: #1e2229;
}
.tsd-kind-class-member.tsd-kind-icon:before {
filter: invert(56%) sepia(28%) saturate(625%) hue-rotate(182deg) brightness(92%) contrast(89%);
}
.tsd-kind-enum-member.tsd-kind-icon:before {
filter: invert(78%) sepia(11%) saturate(1214%) hue-rotate(7deg) brightness(89%) contrast(90%);
}
.tsd-kind-interface-member.tsd-kind-icon:before {
filter: invert(68%) sepia(17%) saturate(968%) hue-rotate(64deg) brightness(100%) contrast(91%);
}
.tsd-panel,
.tsd-page-title {
box-shadow: unset;
}
* {
--scrollbar-size: 8px;
--scrollbar-thumb-color: #4f575f;
}
/*
* Vertical
*/
*::-webkit-scrollbar {
width: var(--scrollbar-size) !important;
}
/* Thumb */
*::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb-color) !important;
background-image: none !important;
width: var(--scrollbar-size) !important;
border-radius: calc(var(--scrollbar-size) * 0.5) !important;
}
*::-webkit-scrollbar-thumb:hover {
background-color: var(--scrollbar-thumb-color) !important;
background-image: none !important;
}
*::-webkit-scrollbar-thumb:active {
background-color: var(--scrollbar-thumb-color) !important;
background-image: none !important;
}
/* Track */
*::-webkit-scrollbar-track {
background: transparent !important;
background-image: none !important;
width: var(--scrollbar-size) !important;
border-radius: calc(var(--scrollbar-size) * 0.5) !important;
}
/*
* Horizontal
*/
/* Thumb */
*::-webkit-scrollbar:horizontal {
height: var(--scrollbar-size) !important;
}
/* Thumb */
*::-webkit-scrollbar-thumb:horizontal {
background-color: var(--scrollbar-thumb-color) !important;
background-image: none !important;
width: var(--scrollbar-size) !important;
border-radius: calc(var(--scrollbar-size) * 0.5) !important;
}
*::-webkit-scrollbar-thumb:horizontal:hover {
background-color: var(--scrollbar-thumb-color) !important;
background-image: none !important;
}
*::-webkit-scrollbar-thumb:horizontal:active {
background-color: var(--scrollbar-thumb-color) !important;
background-image: none !important;
}
/* Track */
*::-webkit-scrollbar-track:horizontal {
background: transparent !important;
background-image: none !important;
width: var(--scrollbar-size) !important;
border-radius: calc(var(--scrollbar-size) * 0.5) !important;
}
/* Selection */
::-moz-selection {
color: #d2e0e6;
background: #0186b5;
}
::selection {
color: #d2e0e6;
background: #0186b5;
}