forked from mirrors/hugo-tufte
70c7b91f81
* Convert css to scss entirely Fixes #15 * tufte css is now a scss file
12 lines
No EOL
286 B
SCSS
12 lines
No EOL
286 B
SCSS
$ht-code-bgcolor: #282a36;
|
|
|
|
@import "syntax/syntax-dark.scss";
|
|
|
|
.highlight {
|
|
&::-webkit-scrollbar {
|
|
background: $ht-code-bgcolor;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
background: scale-color($ht-code-bgcolor, $lightness: 23%, $saturation: -40%);
|
|
}
|
|
} |