ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Skins

by deathaxe ST3

Easily switch theme and color scheme of Sublime Text with only one command.

Labels themes, utilities

Details

Installs

  • Total 22K
  • Win 11K
  • Mac 7K
  • Linux 4K
May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22
Windows 0 0 2 0 1 1 3 1 0 2 2 2 1 1 4 0 1 0 2 1 2 4 1 0 1 1 2 2 2 1 0 1 3 2 1 2 0 2 0 1 1 2 1 0 0 1
Mac 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0
Linux 0 0 1 0 1 0 0 0 1 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0

Readme

Source
raw.​githubusercontent.​com

Skins

License Package Control

Skins gives users the ability to change their current Sublime Text color scheme and theme with a single command. When a skin is selected, a certain set of settings is applied to Sublime Text. Skins can be provided in theme packages such as Boxy Theme or they can be created by users themselves by saving the current settings to a new User Skin.

screenshot

End Users

General Usage

  1. Open the Command Palette
  2. Type one of the following three commands:
    • UI: Select Skin
    • UI: Save Skin
    • UI: Delete Skin.
Keyboard shortcuts

To quickly open the UI: Select Skin menu use:

  • Ctrl+F12 on Windows / Linux
  • Super+F12 on macOS

Settings

By default the following settings are stored by Save User Skin

  • color_scheme
  • theme
  • font_face
  • font_size

To edit the settings

  1. Open the Command Palette
  2. Type Preferences: Skins Settings

The settings are stored in Packages/User/Skins.sublime-settings.

Example

"skin-template":
{
    // List of settings to load from / save to Preferences.sublime-settings
    "Preferences":
    [
        "color_scheme",
        "theme",
        "font_face",
        "font_size"
    ],
    // List of settings to load from / save to SublimeLinter.sublime-settings
    "SublimeLinter":
    {
        "user":
        [
            "error_color",
            "gutter_theme",
            "warning_color"
        ]
    }
}

Theme Developers

General

Skins parses all *.skins files in all packages. They are expected to store a collection of settings for sublime text and other packages. More than one skins file can exist in a package. The name of the file does not matter, but the names of the skins inside must be unique per package. The quick panel will show these names. The Package providing it is displayed in the second row as a kind of description.

File Format

{
    // skin
    "Boxy Tomorrow (Green)": {
        // Packages/User/Preferences.sublime-settings
        "Preferences": {
            "color_scheme": "Packages/Boxy Theme/schemes/Boxy Tomorrow.tmTheme",
            "theme": "Boxy Tomorrow.sublime-theme",
            "theme_accent_green" : true,
            "theme_accent_orange": null,
            "theme_accent_purple": null
        },
        // Packages/User/SublimeLinter.sublime-settings
        "SublimeLinter": {
            "user": {
                // ...
            }
        }
    },

    // skin
    "Monokai 2": {
        // ...
    },

    // ...
}

Each child node of a skin represents the settings to be written to a Packages/User/*.sublime-settings file. Therefore settings can be provided not only for Sublime Text but for any installed package such as SublimeLinter. A skin must at least contain the Preferences node with color_scheme or theme settings to be valid but may include any other setting accepted by Sublime Text.

Settings with null value, are deleted in the sublime-settings files.

Commands

Skins exports the following commands to directly interact with all available skins. They can be used to create key bindings or command shortcuts to the most frequent used skins.

Set Skins

To open a quick panel with all available skins call:

"command": "set_skin"
"args": { }

To open a quick panel with all skins provided by a single package call:

"command": "set_skin",
"args": { "package": "Skins" }

To directly apply a certain predefined skin call:

"command": "set_skin",
"args": { "package": "Skins", "name": "Monokai" }

To apply a saved user skin call:

"command": "set_skin",
"args": { "package": "User", "name": "Preset 01" }
Save Skins

The following example will directly save the current look and feel as Preset 01 in the Packages/User/Saved Skins.skins file.

"command": "save_user_skin",
"args": { "name": "Preset 01" }
Delete Skins

The following example will directly delete Preset 01 from the Packages/User/Saved Skins.skins file.

"command": "delete_user_skin",
"args": { "name": "Preset 01" }

Inspired by