add custom text selection color.

closes #7
This commit is contained in:
Jonas Duri 2019-01-27 21:33:33 +01:00
parent 2e3a025ba4
commit 3703065806
2 changed files with 4 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -20,6 +20,9 @@
text-rendering: geometricPrecision; text-rendering: geometricPrecision;
} }
*::-moz-selection { background: var(--primary-color); color: var(--invert-font-color); }
*::selection { background: var(--primary-color); color: var(--invert-font-color); }
body { body {
font-size: var(--global-font-size); font-size: var(--global-font-size);
color: var(--font-color); color: var(--font-color);