assets + logo change

This commit is contained in:
2025-03-20 15:41:52 +01:00
parent a5efb90988
commit 64ea7efaa4
10 changed files with 227 additions and 3 deletions

View File

@ -0,0 +1,17 @@
---
---
//this mode is like colors-auto but if the device does not support @media prefers-color-scheme it will deafault to dark mode
@import "colors";
:root {
@include colors;
@include dark-colors;
}
@media print, (prefers-color-scheme: light) {//we would not like to apply dark mode if content is on printer as that would use a lot of ink
:root {
@include light-colors;
}
}