From 38c9906d2ff037474ba48880de550904b9a3f740 Mon Sep 17 00:00:00 2001 From: Muskan Date: Fri, 5 Jun 2026 01:51:25 +0530 Subject: [PATCH] Fix low contrast text selection highlight --- public/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/public/css/style.css b/public/css/style.css index db9e008..3a02d49 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -701,3 +701,12 @@ input, textarea, select { max-height: 0; opacity: 0; } +::selection { + background: #a855f7; + color: #ffffff; +} + +::-moz-selection { + background: #a855f7; + color: #ffffff; +} \ No newline at end of file