From e1f73c0b742e2f23aa9da5ec1b77a95b9c67e380 Mon Sep 17 00:00:00 2001 From: Avinal Kumar Date: Tue, 18 May 2021 22:48:19 +0530 Subject: [PATCH] text highlight color changed Signed-off-by: Avinal Kumar --- themes/alchemy/static/css/theme.css | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/themes/alchemy/static/css/theme.css b/themes/alchemy/static/css/theme.css index 36fb232..2d57c9c 100644 --- a/themes/alchemy/static/css/theme.css +++ b/themes/alchemy/static/css/theme.css @@ -1,10 +1,30 @@ :root { --alchemy-border: rgba(0,0,0,.1); } + ::selection { - background: var(--primary); - color: var(--secondary); - text-shadow: none; + background: #0085a1; + color: #fff; +} + +::-moz-selection { + background: #0085a1; + color: #fff; +} + +::-o-selection { + background: #0085a1; + color: #fff; +} + +::-ms-selection { + background: #0085a1; + color: #fff; +} + +::-webkit-selection { + background: #0085a1; + color: #fff; } blockquote {