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

Theme - One

by AmjadHD ST3 Trending

🎨 A port of Atom's One Dark and One Light UI and Syntax Themes ⚡.

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

One Theme

GitHub release (latest by date) Package Control

🎨 A port of Atom's One Dark and One Light UI and Syntax Themes for ST4 and ST3.2+ ⚡.

screenshot

The package includes two color schemes One Dark and One Light in addition to an adaptive Theme. Make sure to disable or remove any other color scheme with the same name, namely https://packagecontrol.io/packages/One%20Dark%20Color%20Scheme.

Installation

Package Control

Preferences

Preferences for the closest look to atom, add to your user settings (if you wish).

{
    "always_show_minimap_viewport": true,
    "animation_enabled": false,
    "caret_extra_bottom": 2,
    "caret_extra_top": 1,
    "caret_style": "blink",
    "enable_tab_scrolling": false,
    "highlight_line": true,
    "highlight_modified_tabs": true,
    "indent_guide_options": [
        "draw_normal",
        "solid"
    ],
    "line_padding_bottom": 2,
    "line_padding_top": 1,
    "margin": 0,

    // ST4-specific
    "highlight_gutter": false,
    "show_scroll_tabs_buttons": false,
    "show_tabs_dropdown_button": false,
    "show_new_tab_button": false,
}

ST4 introduced auto dark/light mode switching, run UI: Select Theme and UI: Select Color Scheme, choose auto and proceed. Or add these to your user settings:

{
    "theme": "auto",
    "dark_theme": "One.sublime-theme",
    "light_theme": "One.sublime-theme",

    "color_scheme": "auto",
    "dark_color_scheme": "One Dark.sublime-color-scheme",
    "light_color_scheme": "One Light.sublime-color-scheme",
}

Customization

For ST4, Run UI: Customize Theme from the command palette, for ST3, navigate to Preferences > Package Settings > Theme - One > Customize. See https://www.sublimetext.com/docs/themes.html#customization.

Here's a sample override:

{
    "variables": {
        // darker borders with medium-dark color schemes
        "border-color": "color(var(ui-bg) l(- 8%))",
    },

    "rules": [
        // Highlight the top border of the focused tab instead of the left one
        {
            "class": "tab_control",
            "layer2.inner_margin": [0, 2, 0, 0],
        },
        // ST4: Match the color of the tab connector to that of the tab
        {
            "class": "tab_connector",
            "tint_index": 0,
        },
        // Hide sidebar's vcs status icons
        {
            "class": "vcs_status_badge",
            "layer0.opacity": 0.0,
        },
        // Show panel's close button
        {
            "class": "panel_close_button",
            "content_margin": 8,
            "layer0.opacity": 1.0
        },
    ]
}

Credits

https://github.com/andresmichel/one-dark-theme was helpful for me to create this theme.