Merge pull request #1997 from lifehackerhansol/colorsel2

Manually define colours for text selection
This commit is contained in:
Lily 2022-04-05 17:17:39 -07:00 committed by GitHub
commit 6f1f233176
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -6,6 +6,10 @@ html {
/* sticky footer fix */
position: relative;
min-height: 100%;
::selection {
color: $text-color;
background: $text-highlight-color;
}
}
body {

View file

@ -257,6 +257,7 @@ $nord15: #b48ead;
/* Colors */
$background-color : $nord0 !default;
$text-color : $nord4 !default;
$text-highlight-color : $nord3 !default;
$primary-color : $nord8 !default;
$success-color : $nord14 !default;
$warning-color : $nord12 !default;