The web-page currently does not have dark themes, which is a problem for people reading the site in dark environments.
Consider at least using system theme with @media/prefers-color-scheme.
A theme switcher would need to save the current selected theme, this should either use JavaScript or cookies.
Use of JavaScript is avoided as much as possible on this project, we could set a session cookie or something if someone needs to set the theme manually.
Ideally, the cookie should not be set/sent when using the default theme (set using prefers-color-scheme)
The web-page currently does not have dark themes, which is a problem for people reading the site in dark environments.
Consider at least using system theme with [@media/prefers-color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme).
A theme switcher would need to save the current selected theme, this should either use JavaScript or cookies.
Use of JavaScript is avoided as much as possible on this project, we could set a session cookie or something if someone needs to set the theme manually.
Ideally, the cookie should not be set/sent when using the default theme (set using `prefers-color-scheme`)