How can i change the title bar of sublime text like this image? All black finish!
Change title bar color via Settings in Windows 10 Step 1: Navigate to Settings > Personalization > Colors. Scroll down the page to see Show accent color on the following surfaces option. Step 2: Select Title bars and window borders checkbox. That'ts it!
The highlighting of source code and prose in Sublime Text is controlled by a color scheme. A color scheme assigns colors and font styles to scopes, which are assigned to the text by the syntax. The rest of the look of the user interface is controlled by the theme.
As @stemcc mentioned early it is possible now. And here's a quick solution how to do that.
1- Go to Sublime settings folder and find your theme file.
/Users/{userName}/Library/Application Support/Sublime Text 3/Installed Packages/{themeName}.sublime-package
2- Backup your theme file just in case.
3- Add a .zip
extension to your theme file and unarchive it.
4- You're gonna see a {themeName}.sublime-theme
file in the unarchived files. Open it and paste these codes top of the JSON file. You can change the colors in RGB model.
// Windows - title bar
{
"class": "title_bar",
"fg": [215, 218, 224],
"bg": [33, 37, 43]
},
5- Select all unarchived files (except the main folder) and compress them.
6- Change the file name from Archive.zip
to original name {themeName}.sublime-package
. And that's it.
Before:
After:
For more information about the windows element go to Sublime's documentation page.
https://www.sublimetext.com/docs/3/themes.html#elements-windows
As of build 3127, SublimeText 3 now supports custom color window title bars in macOS 10.10+.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With