Hands on with Dark Mode in MacOS Mojave
At least one long-awaited feature has made its way to the Mac at WWDC this year -- Dark Mode. AppleInsider goes hands-on with the new system-wide UI in macOS Mojave.
In macOS Sierra, Apple allowed users to alternate between a light and dark menu bar along the tops of their displays. This didn't go far enough to appease users, who still longed for a complete dark mode across all apps, menus, and UI elements.
That is exactly what we got with macOS Mojave.
It all starts in the preferences app where under General there lives the option to toggle between light and dark appearance. Same location where the menu bar appearance could be changed.
A really nice effect is the new default wallpaper included in Mojave. As light and dark mode is changed, the wallpaper will adjust to being day or night.
While the menu bar along the top has largely remained unchanged, everything else is new. We see this with the new dock along the bottom that has a new appearance. To the right of the new "recent" section rests a new dark trash can icon.
All system apps have been optimized for the new dusky UI -- even the highlighting is changed up. All of the new apps, including Home, News, Voice Memos, and Stocks look particularly good here.
Some of Apple's apps have not been updated yet like the iWork suite, most likely because of their App Store distribution. Pages, Keynote, and Numbers are all glaringly bright on the new darker interface. These will undoubtedly be updated once Mojave is released.
Third-party apps will be able to adapt to the UI as well once it is released, with just a bit of additional work. Right now, some apps can look a bit off because of it. As an example, when highlighting text in Slack, it uses a dark highlighting that makes the text largely illegible while selected. Other apps, like Affinity Photo, already fit right in.
Dark Mode in macOS Mojave is a huge step in the right direction and feature sorely needed. It looks great and will fill out even better as developers add support when it is released this fall. Unfortunately, Dark Mode still evades iOS, which is left only with Smart Invert as the only thing even close.
In macOS Sierra, Apple allowed users to alternate between a light and dark menu bar along the tops of their displays. This didn't go far enough to appease users, who still longed for a complete dark mode across all apps, menus, and UI elements.
That is exactly what we got with macOS Mojave.
It all starts in the preferences app where under General there lives the option to toggle between light and dark appearance. Same location where the menu bar appearance could be changed.
A really nice effect is the new default wallpaper included in Mojave. As light and dark mode is changed, the wallpaper will adjust to being day or night.
While the menu bar along the top has largely remained unchanged, everything else is new. We see this with the new dock along the bottom that has a new appearance. To the right of the new "recent" section rests a new dark trash can icon.
All system apps have been optimized for the new dusky UI -- even the highlighting is changed up. All of the new apps, including Home, News, Voice Memos, and Stocks look particularly good here.
Some of Apple's apps have not been updated yet like the iWork suite, most likely because of their App Store distribution. Pages, Keynote, and Numbers are all glaringly bright on the new darker interface. These will undoubtedly be updated once Mojave is released.
Third-party apps will be able to adapt to the UI as well once it is released, with just a bit of additional work. Right now, some apps can look a bit off because of it. As an example, when highlighting text in Slack, it uses a dark highlighting that makes the text largely illegible while selected. Other apps, like Affinity Photo, already fit right in.
Dark Mode in macOS Mojave is a huge step in the right direction and feature sorely needed. It looks great and will fill out even better as developers add support when it is released this fall. Unfortunately, Dark Mode still evades iOS, which is left only with Smart Invert as the only thing even close.
Comments
Given that dark mode is more grey than black, if OLED Macs come to pass, it won't be a big savings.
2) I've noticed that some websites will change their background when you switch to Dark Mode. They aren't changing the text on screen, which makes it hard to read. It makes me think working more like Smart Invert on iOS.
The audio on the vid is disappointing for an Insider Production. Way waaaay too many plosives. I'm surprised that passed muster.
As I stated above, I would love to have the Light/Dark Mode auto-switch based on those parameters, as well as an option based on the ambient light sensor, but I haven't been able to figure out where that PLIST setting is located.
I’m hoping that I can turn this feature on with a configuration profile - this will be great for our multimedia teaching labs. The Adobe apps and Final Cut already have dark themes.
Hi, use applescript, FYI.
repeat
tell application "System Events"
tell appearance preferences
set current_status to get dark mode
end tell
end tell
set hour to do shell script "date +%H" as string
set hour to hour as integer
if hour is less than 8 or hour is greater than 18 then
set should_be_status to true
else
set should_be_status to false
end if
if current_status is not equal to should_be_status then
tell application "System Events"
tell appearance preferences
set dark mode to not dark mode
end tell
end tell
end if
delay 900
end repeat