As usual Apple has set off a major change in the way we do business. Newspapers, Apps, Slack, everything is going to start supporting dark mode. I think the original way we tackled "custom color schemes" of the OS was too much - we allowed people to set individual colors for everything. Once again apple has simplified that to just light mode and dark mode. And that's how the rest of the industry will finally tackle c…
Sad to realize that if Slack had a real, native app, most of the conversion would be a simple toggle.
Using Dark Mode in CSS with MacOS Mojave
91–100 of 128 posts
Re: Using Dark Mode in CSS with MacOS Mojave
#92 $ defaults write -g NSRequiresAquaSystemAppearance -bool Yes
Logout and Choose “Dark Mode".Revert Back
$ defaults write -g NSRequiresAquaSystemAppearance -bool NoRe: Using Dark Mode in CSS with MacOS Mojave
#93Re: Using Dark Mode in CSS with MacOS Mojave
#94Earlier quoted context omitted.
This API, presumably, once websites adopt it and actually add CSS to support darker themes.
No. This is a different thing. The problem is when people haven't coded their CSS correctly and assume default background is white and then set a non default foreground of black or something. Those sites will still break for dark themes even with this API. In fact, if people actually understood the first C in CSS, this thing wouldn't even be necessary.
Re: Using Dark Mode in CSS with MacOS Mojave
#95This is a great blog post to build awareness of the prefers-color-scheme feature. But I don't think it's safe to assume that someone who sets a dark UI also wants web pages displayed like that. I set dark mode in macOS to have the UI fade into the background and reveal the content; I don't want or expect that websites will present white text on a dark background too. That's fine for coding but can be less readable fo…
If it's done well, absolutely it's safe to assume.
I am extremely excited to research and start using this feature. I don't want to force anyone to use dark UIs that don't want them, but simultaneously I can't bring myself to make more light-themed apps and pages when I want exclusively dark themes for everything that runs on my machine.
Re: Using Dark Mode in CSS with MacOS Mojave
#96As usual Apple has set off a major change in the way we do business. Newspapers, Apps, Slack, everything is going to start supporting dark mode. I think the original way we tackled "custom color schemes" of the OS was too much - we allowed people to set individual colors for everything. Once again apple has simplified that to just light mode and dark mode. And that's how the rest of the industry will finally tackle c…
Sad to realize that if Slack had a real, native app, most of the conversion would be a simple toggle.
Re: Using Dark Mode in CSS with MacOS Mojave
#97Earlier quoted context omitted.
Curious, I ended up turning off dark mode because I found web pages were jarringly bright compared to everything else on the screen.
Don't you use websites that have a dark theme more instead. I always preferred websites that allowed me to select a dark theme and it seems to be more and more popular to do that. Hell even you-tube does that now.
I still would prefer to change a setting once, rather than establish a profile on every website to enable a dark theme.
Re: Using Dark Mode in CSS with MacOS Mojave
#98Earlier quoted context omitted.
Curious, I ended up turning off dark mode because I found web pages were jarringly bright compared to everything else on the screen.
Don't you use websites that have a dark theme more instead. I always preferred websites that allowed me to select a dark theme and it seems to be more and more popular to do that. Hell even you-tube does that now.
Re: Using Dark Mode in CSS with MacOS Mojave
#99Earlier quoted context omitted.
As a counterpoint, I find a white app or webpage jarring in dark mode and much prefer light/white text on dark background. I’m happy that the rest of the os is catching up with how I’ve run my IDE for years.
Agreed, i've been using the DarkReader extension to make everything 'Dark Mode' https://darkreader.org/
Re: Using Dark Mode in CSS with MacOS Mojave
#100First it was desktop with mouse -- easy. Then responsive design requiring both desktop and mobile layouts, as well as interaction design with both mouse and touch. Now what if users start expecting both light and dark versions of websites? "We show the mobile version of the menu with its own hover on small screens only, but the hover only appears if JavaScript detects a mouse, but wait we need a different hover color when it's in dark mode!"
Not to mention other standard things like making sure it works in all major browsers, or even that interactive things like comments or voting have non-JavaScript fallbacks, or that the order of elements is appropriate for screenreaders.
I love using dark mode at night, and as a user would love for every website to follow it too. But as a developer, there are just too many combinations to design and test for, and it's growing exponentially!