mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 12:56:57 +01:00
12 lines
281 B
SCSS
12 lines
281 B
SCSS
|
$ht-code-bgcolor: #dde2ff;
|
||
|
|
||
|
@import "syntax-light.scss";
|
||
|
|
||
|
.highlight {
|
||
|
&::-webkit-scrollbar {
|
||
|
background: $ht-code-bgcolor;
|
||
|
}
|
||
|
&::-webkit-scrollbar-thumb {
|
||
|
background: scale-color($ht-code-bgcolor, $lightness: -13%, $saturation: -80%);
|
||
|
}
|
||
|
}
|