Skip to content

Instantly share code, notes, and snippets.

@danielTobon43
Last active July 12, 2021 23:33
Show Gist options
  • Save danielTobon43/caf6ae8892f657c0b66fc70aef5bdea5 to your computer and use it in GitHub Desktop.
Save danielTobon43/caf6ae8892f657c0b66fc70aef5bdea5 to your computer and use it in GitHub Desktop.

Style any color scheme Sublime Text 3

To style anything, you have to get its scope and define how to style it in the color scheme. To get the scope at the current cursor position, press:

Ctrl+shift+alt+p.

Color scheme configuration

<dict>
            <key>name</key>
            <string>THE TITTLE YOU WANT</string>
            <key>scope</key>
            <string>meta.function-call.arguments.python</string>  <------ Here goes the scope you find in the previous step
            <key>settings</key>
            <dict>
                <key>foreground</key>
                <string>#EC5F67</string>   <------------ the colour you want
            </dict>
        </dict>

Requirements

  1. PackageResourceViewer: Open Resource
  2. Open the color scheme you want to modify
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment