Files
ontvlambaar/src/styles.scss
Arne Vlaeminck 47ad7f3659
All checks were successful
Copy Files to Samba Share dev / Copy Files (push) Successful in 22s
Added theme switching
2024-11-01 12:19:01 +01:00

34 lines
592 B
SCSS

html {
// light mode
--text-color: rgb(29, 29, 29);
--background-color: rgb(255, 255, 255);
--accent-color: rgb(211, 55, 38);
--logo-color: var(--text-color);
font-family: Fredoka;
font-weight: 300;
color: var(--text-color);
background-color: var(--background-color);
.only-on-dark {
display: none;
}
}
[data-theme="dark"] {
// dark mode
--text-color: rgb(222, 112, 108);
--background-color: rgb(41, 23, 44);
--accent-color: #E94541;
--logo-color: #E94541;
.only-on-dark {
display: inline-block;
}
.only-on-light {
display: none;
}
}