added selection color with accent color

This commit is contained in:
Gabriele Musco 2020-09-05 10:47:45 +02:00
parent 61086f698d
commit ab9f873c65
No known key found for this signature in database
GPG Key ID: 8539FD3454380B83
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,11 @@ $dim_fg_color: {{ .Site.Params.dimForegroundColor | default "#bababa" }};
$stroke_color: {{ .Site.Params.strokeColor | default "#4f4f4f" }};
$accent_color: {{ .Site.Params.accentColor | default "#db5793" }};
::selection, ::-moz-selection {
background: $accent_color;
color: $fg_color;
}
body, html {
font-family: "JetBrains Mono", monospace;
margin: 0;