forked from mirrors/hugo-tufte
4432cb953b
* move the syntax highlighting theme choice to the scss file Fixes #25 * move the syntax highlighting theme choice to the scss file Fixes #25
12 lines
No EOL
281 B
SCSS
12 lines
No EOL
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%);
|
|
}
|
|
} |