-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Light Theme for Improved Accessibility #254
Comments
I'm not trying to be crass about this at all and this is a genuine question (not rhetorical), but isn't this what this accessibility option in macOS (and others) was made for? https://support.apple.com/guide/mac-help/change-display-colors-easier-onscreen-mchl11ddd4b3/mac You can also bind it to a keybinding. I use this quite frequently... In addition to that, browsers have supported user mode stylesheets for some time. I haven't used these in recent years but I also thought this was one of the expressed design goals of this as well. This is mostly in response to this comment:
This sounds a bit hyperbolic, since the above options exist. I don't think every website/app/etc in the world needs a separate light/dark theme. It adds additional maintenance burden and complicates future improvements since we have to make sure everything functions in both. There appear to be multiple options here that are all possible that contradict the website being "completely inaccessible":
I'm not against a light theme in time so don't take this as absolute rejection , but I don't want to increase maintenance burden on what is already a total passion project free time pursuit, so I'm not super interested in prioritizing this right now. |
Reading the docs on github doesn't seem like a particularly pleasant experience, fwiw: The text contrast on the website is pretty low (Lc -44.8) which doesn't help things on the accessibility front. Using I am admittedly impressed at how well the simplest-possible user style works: * {
color: black !important;
background-color: white !important;
} You do presumably lose useful features like syntax highlighting of config snippets by doing that, however. |
The current version of the website lacks a light theme, which significantly impacts accessibility for users with visual impairments, such as astigmatism. Reading light text on a dark background (reverse contrast) can cause discomfort, eye strain, and difficulty focusing, making the website completely unusable without external tools or extensions.
Problem
Suggested Solution
prefers-color-scheme
) to detect the user's preference.Benefits
Without this change, the website is completely inaccessible to me and likely many others in similar situations. I am forced to rely on third-party tools to make the content readable, which is far from ideal. Please consider addressing this issue to ensure the site is usable for all visitors. Thank you! 🙏
The text was updated successfully, but these errors were encountered: