UNPKG

890 BTypeScriptView Raw
1export default function darkScrollbar(options?: {
2 track: string;
3 thumb: string;
4 active: string;
5}): {
6 scrollbarColor: string;
7 '&::-webkit-scrollbar, & *::-webkit-scrollbar': {
8 backgroundColor: string;
9 };
10 '&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb': {
11 borderRadius: number;
12 backgroundColor: string;
13 minHeight: number;
14 border: string;
15 };
16 '&::-webkit-scrollbar-thumb:focus, & *::-webkit-scrollbar-thumb:focus': {
17 backgroundColor: string;
18 };
19 '&::-webkit-scrollbar-thumb:active, & *::-webkit-scrollbar-thumb:active': {
20 backgroundColor: string;
21 };
22 '&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover': {
23 backgroundColor: string;
24 };
25 '&::-webkit-scrollbar-corner, & *::-webkit-scrollbar-corner': {
26 backgroundColor: string;
27 };
28};