Some progress on porting frontend
Some checks failed
/ docker (push) Has been cancelled

This commit is contained in:
Melody Becker 2025-07-10 20:23:59 +02:00
parent 59373c6380
commit 6515bda730
Signed by: mstar
SSH key fingerprint: SHA256:vkXfS9FG2pVNVfvDrzd1VW9n8VJzqqdKQGljxxX8uK8
18 changed files with 728 additions and 39 deletions

View file

@ -1,18 +1,28 @@
@media (prefers-color-scheme: light) {
:root {
--text: #0d0f0b;
--background: #f6f7f3;
--primary: #4a5733;
--secondary: #b5c898;
--accent: #7c9b4b;
}
: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;
}
:root {
--text: #f2f4f0;
--background: #0b0c08;
--primary: #bfcca8;
--secondary: #546737;
--accent: #96b464;
}
}
:root {
--border: var(--text);
}
svg.black-white {
fill: var(--text);
stroke: var(--text);
}
/*# sourceMappingURL=base.css.map */