Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can i change the title bar of Sublime text is black like brackets?

How can i change the title bar of sublime text like this image? All black finish!

enter image description here

like image 987
AnhTN Avatar asked Oct 02 '16 02:10

AnhTN


People also ask

How do I change the title bar theme?

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!

Can you color Text in Sublime?

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.


2 Answers

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:

enter image description here

After:

enter image description here

For more information about the windows element go to Sublime's documentation page.

https://www.sublimetext.com/docs/3/themes.html#elements-windows

like image 85
ozgrozer Avatar answered Sep 21 '22 20:09

ozgrozer


As of build 3127, SublimeText 3 now supports custom color window title bars in macOS 10.10+.

like image 26
Stemcc Avatar answered Sep 20 '22 20:09

Stemcc