fix: cursor selection bg color in dark mode

This commit is contained in:
Ramesh Mane
2026-01-10 17:29:52 +05:30
parent e6acebd889
commit 73830238d2

View File

@@ -266,6 +266,13 @@ body {
// Dark theme specific style
[theme='dark'] {
::-moz-selection {
background-color: #3366ff40;
}
::selection {
background-color: #3366ff40;
}
/* Change autocomplete styles in WebKit */
input:-webkit-autofill:not([type='checkbox']):not([type='radio']),
input:-webkit-autofill:hover:not([type='checkbox']):not([type='radio']),