feat: move some colors to root variables

This commit is contained in:
SauceyRed 2025-06-07 06:00:48 +02:00
parent 774e10d68c
commit c0f4697d00
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462

View file

@ -12,6 +12,12 @@ const banner = useState("banner", () => false);
</script>
<style>
:root {
--background-color: rgb(30, 30, 30);
--main-text-color: rgb(190, 190, 190);
--outline-border: 1px solid rgb(150, 150, 150);
}
html,
body {
font-family: Arial, Helvetica, sans-serif;
@ -22,7 +28,7 @@ body {
}
*:focus-visible {
outline: 1px solid rgb(150, 150, 150);
outline: var(--outline-border);
}
a {