Areas such as links and the table menu are hard to see in dark mode because the contrast ratio is so low.
Should use media query to detect dark mode and preselect dark mode (@media (prefers-color-scheme: dark)).
What we have now? Notice it's super low contrast
Ideally we can make them white, so it's easier to see
I looked at the code, looks like there are a lot of inconsistencies in terms of stylesheet framework used. In this case, most of the colors are stored inside of src/renderer/containers/app.css and some places the code base uses scss. Might be easier to consolidate them.
@media (prefers-color-scheme: dark)
).What we have now? Notice it's super low contrast
Ideally we can make them white, so it's easier to see
I looked at the code, looks like there are a lot of inconsistencies in terms of stylesheet framework used. In this case, most of the colors are stored inside of
src/renderer/containers/app.css
and some places the code base usesscss
. Might be easier to consolidate them.