Sublime Forum

Change background color for Mariana

#1
  1. I am new to Sublime. I have five color schemes. I like Mariana the most, but the background is a shade of gray that makes the code a bit hazy. How do I make the background darker for the Mariana color scheme?

  2. Is there way to add more color schemes? (I have the paid version, if that matters.)

0 Likes

#2

Save this as Mariana.sublime-color-scheme in your User package:

{
    "globals": {
        "background": "var(blue3)" // Replace this with the color of your choice
    }
}

This will override the builtin color scheme. I do this myself to brighten some of the text colors.

You can add more color schemes by saving the sublime-color-scheme files into your User package or by installing packages that provide color schemes via Package Control.

1 Like

#3

There is documentation at https://www.sublimetext.com/docs/3/color_schemes.html for all of the details about color schemes. The technique mentioned by @ThomSmith is discussed at https://www.sublimetext.com/docs/3/color_schemes.html#customization.

2 Likes

#4

@ThomSmith @wbond Thanks a lot!

0 Likes