change selection background color

This commit is contained in:
Jan Koppe 2026-03-13 12:47:05 +01:00
parent d63fe9417b
commit 1bb7b207c6
Signed by: thunfisch
GPG Key ID: BE935B0735A2129B
1 changed files with 8 additions and 5 deletions

View File

@ -26,7 +26,6 @@ a {
text-decoration-color: var(--main-accent-color); text-decoration-color: var(--main-accent-color);
} }
header #arrows { header #arrows {
fill: var(--main-accent-color); fill: var(--main-accent-color);
} }
@ -36,9 +35,13 @@ header #text {
} }
.note { .note {
border-left: .15rem solid var(--main-accent-color); border-left: 0.15rem solid var(--main-accent-color);
} }
.warning { .warning {
border-left: .15rem solid var(--warning-color); border-left: 0.15rem solid var(--warning-color);
}
::selection {
background-color: var(--main-accent-color);
} }