Sublime Forum

Sublime Text 3 - per project color_scheme misbehaving

#1

In ST2, I am able to change my color scheme in project settings:

"settings":
	{
		"color_scheme": "Packages/Color Scheme - Default/Dawn.tmTheme"
	},

In ST3, this appears to also be supported, but when switching to this project (using Switch Project…), the color gets all messed up. I’ll upload a screenshot. Are others having this problem?

edit: can’t upload the screenshot “Sorry, the board attachment quota has been reached.”. Anyways, everything looks completely washed out. Looking closer, it appears that the background color in the scheme is being used (white), but the text colors from ST’s main theme (Monokai) are being used.

0 Likes

#2

I had that issue in ST2. Background colors would change on project switch, but the font color wouldn’t change until I focused on that editor. But now after switching to ST3, I can’t get Project-specific color schemes to work at all. My project settings has a line like:
{
“color_scheme”: “Packages/Color Scheme - Default/Blackboard.tmTheme”
}

but it seems to have no effect. Are others seeing this issue? I’m on Build 3047. Thanks!

0 Likes

#3

[quote=“ndnichols”]I had that issue in ST2. Background colors would change on project switch, but the font color wouldn’t change until I focused on that editor. But now after switching to ST3, I can’t get Project-specific color schemes to work at all. My project settings has a line like:
{
“color_scheme”: “Packages/Color Scheme - Default/Blackboard.tmTheme”
}

but it seems to have no effect. Are others seeing this issue? I’m on Build 3047. Thanks![/quote]

I have the exact same issue! Did you figure it out?

0 Likes

#4

In your .sublime-project file, do something like:

[code]{
“folders”:

    {
        "follow_symlinks": true,
        "path": "_PF"
    }
],
"settings":
{
    "color_scheme": "Packages/User/SublimeLinter/arstotzka (SL).tmTheme"
}

}[/code]

0 Likes