From 398628339f3ac9adf4d83e2badd64523b9971686 Mon Sep 17 00:00:00 2001 From: futile Date: Wed, 4 Dec 2024 17:09:06 +0000 Subject: [PATCH] make text selection black and white --- static/www/style.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/www/style.scss b/static/www/style.scss index 7cc5c29..b9d31da 100644 --- a/static/www/style.scss +++ b/static/www/style.scss @@ -25,6 +25,11 @@ body { font-family: 'Iosevka', monospace; } +::selection { + background-color: $primary-color; + color: $background-color; +} + @mixin flex-center { display: flex; justify-content: center;