Looks good so far! Just as a continuation to the no-effort light/dark mode, consider adding a section like this: Code: @media (prefers-color-scheme: dark) { ... } ...in order to adapt your custom text colours (where you assigned them, preferably don't touch elsewhere) to be better readable on dark backgrounds
There are some other best practices like using relative sizes for text size, but it's not necessary to get everything right the first time
Yep! Thanks! With the preferred color, I got a bit confused on how to use it. <meta name="color-scheme" content="dark light" /> Your styles can adapt to the current color scheme using the prefers-color-scheme CSS media feature.
Just as a continuation to the no-effort light/dark mode, consider adding a section like this:
...in order to adapt your custom text colours (where you assigned them, preferably don't touch elsewhere) to be better readable on dark backgrounds