mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 04:46:58 +01:00
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
279 B
SCSS
12 lines
No EOL
279 B
SCSS
$ht-code-bgcolor: #282a36;
|
|
|
|
@import "syntax-dark.scss";
|
|
|
|
.highlight {
|
|
&::-webkit-scrollbar {
|
|
background: $ht-code-bgcolor;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
background: scale-color($ht-code-bgcolor, $lightness: 23%, $saturation: -40%);
|
|
}
|
|
} |