Huw did this go missing?
All checks were successful
/ docker (push) Successful in 1m59s

This commit is contained in:
Melody Becker 2025-07-10 20:25:07 +02:00
parent 6515bda730
commit ba11090007
Signed by: mstar
SSH key fingerprint: SHA256:vkXfS9FG2pVNVfvDrzd1VW9n8VJzqqdKQGljxxX8uK8

View file

@ -0,0 +1,32 @@
@use "sass:color";
// Base colors here
@media (prefers-color-scheme: light) {
:root {
--text: #0d0f0b;
--background: #f6f7f3;
--primary: #4a5733;
--secondary: #b5c898;
--accent: #7c9b4b;
}
}
@media (prefers-color-scheme: dark) {
:root {
--text: #f2f4f0;
--background: #0b0c08;
--primary: #bfcca8;
--secondary: #546737;
--accent: #96b464;
}
}
// And calculate the rest here
:root {
--border: var(--text);
}
svg.black-white {
fill: var(--text);
stroke: var(--text);
}