Default Colour Scheme should follow system default

Use case or problem

Obsidian ignores user settings for Colour Scheme from installation and later. If the user changes the scheme to light, which they should not need to do for the system default has already been set, there are still areas of the program that enforce Dark mode; at least two those being Open Help and Switch Vault.

Proposed solution

The default within Obsidian should be “Adapt to System” NOT Dark mode from installation. This is vital for anyone who has set their system to Light because of Mears-Irlen Syndrome.

Also all panels that currently do not honour the selected colour scheme must be updated to do so.

Current workaround (optional)

The user is forced to call up Preferences > Appearance > Colour Scheme to change this disability discrimination. And even then it makes no difference in certain areas of the program’s interface specifically at least the Open Help and Switch Vault panels.

6 Likes

will be implemented v1.5. no ETAs.

1 Like

Another (small) thing that might be considered part of this is tooltips (like the “Follow link” popup in Source Mode) — they are dark in both dark and light mode. (In dark mode this makes them hard to distinguish from the background, a separate issue but worth mentioning if they’re going to be changed in some way.)

.theme-dark .tooltip {
  filter: invert(1);
}

:wink:

1 Like

Hm, maybe the “Follow link” things aren’t tooltips (the snippet affects the iOS correction popup tho).

Does this work for you?

.theme-dark :is(.suggestion, .suggestion:hover) {
  background: white;
  color: black;
  border-radius: 6px;
}

.theme-dark .suggestion-item.is-selected {
  background-color: lightgray;
}

No, but thanks! (It did affect a highlighted item elsewhere.)

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.