7

I've installed the Soda Theme using the Package Control in Sublime Text 2, then activated it via Preferences -> Settings - User. However it doesn't get applied. Instead my theme now is Solarized, which is declared at the top of my Preferences.sublime-settings file (line 3):

When I query the console for the theme, the output is correct:

>>> view.settings().get('theme')
u'Soda Light.sublime-theme'

This is correct, as well:

>>> view.settings().get('color_scheme')
u'Packages/Color Scheme - Default/Solarized (Light).tmTheme'

Why do I see the Solarized theme and not Soda?

Thanks!

fullstackplus
  • 1,061
  • 3
  • 17
  • 31

3 Answers3

7

The Theme is not the text-editing screen's colours.

It is the chrome of the program, everything around the text editor; tab styles; etc.

If you check out Soda on Github you can download and then use the same colour scheme as in the screenshots.

Rich
  • 2,164
  • 1
  • 25
  • 39
  • 2
    The direct link to the modified color schemes is http://buymeasoda.github.com/soda-theme/extras/colour-schemes.zip You need to unzip and put the tmtheme files in your Packages/User folder. – Matt Oct 15 '12 at 16:43
  • Where is the Packages/User folder? – Richard Jan 06 '15 at 17:43
3

In case others are confused by the concept of color_scheme vs theme, this question was answered here.

Liam Cain
  • 13,283
  • 5
  • 39
  • 29
3

You have to add , after the first parameters set. It looks like this for me:

{
  "theme": "Soda Dark.sublime-theme",
  "ignored_packages":
  [
    "Vintage"
  ],
  "default_encoding": "UTF-8"
}
Zombo
  • 1
  • 62
  • 391
  • 407