Initial setup ontvlambaar

This commit is contained in:
2024-10-22 21:45:09 +02:00
parent 57c5d30bba
commit 31e443ba5d
22 changed files with 257 additions and 367 deletions

View File

@@ -1 +1,22 @@
/* You can add global styles to this file, and also import other style files */
body {
// dark mode
@media (prefers-color-scheme: dark) {
--text-color: rgb(222, 112, 108);
--background-color: rgb(41, 23, 44);
--accent-color: rgb(222, 112, 108);
}
// light mode
--text-color: rgb(29, 29, 29);
--background-color: rgb(255, 255, 255);
--accent-color: rgb(211, 55, 38);
font-family: Fredoka;
font-weight: 300;
color: var(--text-color);
background-color: var(--background-color);
}