Apple's Terminal App Gets Colorful Redesign in macOS Tahoe

Apple's Terminal app is getting a visual refresh in macOS Tahoe, and it's the first notable design update since the command-line tool debuted.

terminal macos tahoe
The updated Terminal will support 24-bit color and Powerline fonts, according to Apple's Platforms State of the Union presentation at WWDC 2025. The app will also adopt the new Liquid Glass aesthetic with redesigned themes that align with macOS 26's broader visual overhaul.

Terminal already offers various color profiles, but the macOS 26 version promises enhanced customization options for displaying system information in more visually appealing ways.

It's a long-overdue modernization of an app that's essential for developers and power users, as it's remained largely unchanged for over two decades.

macOS Tahoe launches this fall, with the developer beta available now and the first public beta expected in July.

Related Roundup: macOS Tahoe
Related Forum: macOS Tahoe

Popular Stories

m5 macbook pro deal

Why You Shouldn't Buy the Next MacBook Pro

Tuesday February 10, 2026 4:27 pm PST by
Apple is planning to launch new MacBook Pro models as soon as early March, but if you can, this is one generation you should skip because there's something much better in the works. We're waiting on 14-inch and 16-inch MacBook Pro models with M5 Pro and M5 Max chips, with few changes other than the processor upgrade. There won't be any tweaks to the design or the display, but later this...
iOS 26

Apple Releases iOS 26.3 and iPadOS 26.3

Wednesday February 11, 2026 10:07 am PST by
Apple today released iOS 26.3 and iPadOS 26.3, the latest updates to the iOS 26 and iPadOS 26 operating systems that came out in September. The new software comes almost two months after Apple released iOS 26.2 and iPadOS 26.2. The new software can be downloaded on eligible iPhones and iPads over-the-air by going to Settings > General > Software Update. According to Apple's release notes, ...
Apple Logo Zoomed

Apple Expected to Launch These 10+ Products Over the Coming Months

Tuesday February 10, 2026 6:33 am PST by
It has been a slow start to 2026 for Apple product launches, with only a new AirTag and a special Apple Watch band released so far. We are still waiting for MacBook Pro models with M5 Pro and M5 Max chips, the iPhone 17e, a lower-cost MacBook with an iPhone chip, long-rumored updates to the Apple TV and HomePod mini, and much more. Apple is expected to release/update the following products...
iPhone 16e Bottom Crop

Apple Reportedly Unveiling a New iPhone Next Week

Tuesday February 10, 2026 1:51 pm PST by
Apple plans to announce the iPhone 17e on Thursday, February 19, according to Macwelt, the German equivalent of Macworld. The report said the iPhone 17e will be announced in a press release on the Apple Newsroom website, so do not expect an event for this device specifically. The iPhone 17e will be a spec-bumped successor to the iPhone 16e. Rumors claim the device will have four key...
Apple Logo Black

Apple Acquires New Database App

Wednesday February 11, 2026 6:44 am PST by
Apple acquired Canadian graph database company Kuzu last year, it has emerged. The acquisition, spotted by AppleInsider, was completed in October 2025 for an undisclosed sum. The company's website was subsequently taken down and its Github repository was archived, as is commonplace for Apple acquisitions. Kuzu was "an embedded graph database built for query speed, scalability, and easy of ...

Top Rated Comments

9 months ago
Not enough liquid glass, I can still read the texts?
Score: 54 Votes (Like | Disagree)
movielad Avatar
9 months ago
If there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
Score: 25 Votes (Like | Disagree)
9 months ago

Part of my issue is I don't fully understand what "24-bit color and Powerline fonts" brings in the way of useful enhancements.
You can use this script to showcase the color support in the terminal:

awk -v term_cols="${width:-$(tput cols || echo 80)}" 'BEGIN{
s="/\";
for (colnum = 0; colnum<term_cols; colnum++) {
r = 255-(colnum*255/term_cols);
g = (colnum*510/term_cols);
b = (colnum*255/term_cols);
if (g>255) g = 510-g;
printf "3[48;2;%d;%d;%dm", r,g,b;
printf "3[38;2;%d;%d;%dm", 255-r,255-g,255-b;
printf "%s3[0m", substr(s,colnum%2+1,1);
}
printf "\n";
}'

This is the output on iTerm2:



This is on the default Terminal App:



Nice to have more colors available.

About "powerline fonts" I assume it's better support for Nerd Fonts, which use font characters to represent various otherwise "graphical" stuff. E.g. this is my NeoVim status line in iTerm2:



This is how it's represented in Terminal App:



Both use Meslo LGS Nerd Font Mono but the Terminal App seem to display some parts wrong.

Attachment Image

Attachment Image

Attachment Image

Attachment Image
Score: 25 Votes (Like | Disagree)
9 months ago

macOS is like Linux unix based, so the terminals are similar (though still different).
Technically MacOS is an actual UNIX (actual, certified, UNIX), not Linux based :)
Score: 23 Votes (Like | Disagree)
9 months ago
It's great to see developers at Apple put work into the CLI. Between this and Apple's new container tool (https://github.com/apple/container), the future continues to be bright for those of us who use command line tools on Macs.
Score: 17 Votes (Like | Disagree)
9 months ago
You'll need to prise iTerm 2 out of my cold hands I'm afraid.
Score: 13 Votes (Like | Disagree)