fix highlight color issues

This commit is contained in:
minoplhy 2021-06-11 13:06:30 +07:00
parent 3588a792ba
commit dd4380a974
2 changed files with 4 additions and 2 deletions

View File

@ -295,5 +295,6 @@ table {
} }
::selection { ::selection {
background: $highlight; background: $highlight-background;
color: $highlight;
} }

View File

@ -13,7 +13,8 @@ $subhead-color: rgba(4, 240, 91, 0.995) !default;
$bold-color: rgb(2, 255, 19) !default; $bold-color: rgb(2, 255, 19) !default;
$background-color: #0e0e0e !default; $background-color: #0e0e0e !default;
$code-background-color: #483908 !default; $code-background-color: #483908 !default;
$highlight: #b8b9bc !default; $highlight: #8302e5 !default;
$highlight-color: #f7cc7b !default;
$link-base-color: #1eea92 !default; $link-base-color: #1eea92 !default;
$link-visited-color: rgb(137, 49, 49) !default; $link-visited-color: rgb(137, 49, 49) !default;