Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trouble applying the Soda Theme in Sublime Text 2

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!

like image 905
fullstackplus Avatar asked Jul 19 '12 10:07

fullstackplus


3 Answers

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.

like image 200
Rich Avatar answered Nov 24 '22 20:11

Rich


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

like image 38
Liam Cain Avatar answered Nov 24 '22 19:11

Liam Cain


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"
}
like image 36
smartgeekru Avatar answered Nov 24 '22 20:11

smartgeekru