ohctechv3/.svn/pristine/79/798129156a63408cafdb026a877484f9e0aa5112.svn-base
2024-10-28 15:03:36 +05:30

29 lines
890 B
Plaintext

export default function darkScrollbar(options?: {
track: string;
thumb: string;
active: string;
}): {
scrollbarColor: string;
'&::-webkit-scrollbar, & *::-webkit-scrollbar': {
backgroundColor: string;
};
'&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb': {
borderRadius: number;
backgroundColor: string;
minHeight: number;
border: string;
};
'&::-webkit-scrollbar-thumb:focus, & *::-webkit-scrollbar-thumb:focus': {
backgroundColor: string;
};
'&::-webkit-scrollbar-thumb:active, & *::-webkit-scrollbar-thumb:active': {
backgroundColor: string;
};
'&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover': {
backgroundColor: string;
};
'&::-webkit-scrollbar-corner, & *::-webkit-scrollbar-corner': {
backgroundColor: string;
};
};