added selection color with accent color
This commit is contained in:
parent
61086f698d
commit
ab9f873c65
|
@ -4,6 +4,11 @@ $dim_fg_color: {{ .Site.Params.dimForegroundColor | default "#bababa" }};
|
||||||
$stroke_color: {{ .Site.Params.strokeColor | default "#4f4f4f" }};
|
$stroke_color: {{ .Site.Params.strokeColor | default "#4f4f4f" }};
|
||||||
$accent_color: {{ .Site.Params.accentColor | default "#db5793" }};
|
$accent_color: {{ .Site.Params.accentColor | default "#db5793" }};
|
||||||
|
|
||||||
|
::selection, ::-moz-selection {
|
||||||
|
background: $accent_color;
|
||||||
|
color: $fg_color;
|
||||||
|
}
|
||||||
|
|
||||||
body, html {
|
body, html {
|
||||||
font-family: "JetBrains Mono", monospace;
|
font-family: "JetBrains Mono", monospace;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
Loading…
Reference in New Issue