custom selection color
All checks were successful
ci/woodpecker/push/publish Pipeline was successful

This commit is contained in:
Mylloon 2024-07-10 22:58:35 +02:00
parent 847ec0d3c3
commit b145510d83
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 6 additions and 0 deletions

View file

@ -12,6 +12,7 @@
--background: #f1f1f1;
--font-color: #18181b;
--link-color: #df5a9c;
--selection-color: #c5c5c560;
}
}
@ -21,5 +22,6 @@
--background: #171e26;
--font-color: #bcbcc5;
--link-color: #ff80bf;
--selection-color: #c5c5c530;
}
}

View file

@ -4,6 +4,10 @@ html {
font-family: var(--font-family);
}
::selection {
background-color: var(--selection-color);
}
body,
a {
color: var(--font-color);