Theme - One
🎨 A port of Atom's One Dark and One Light UI and Syntax Themes ⚡.
Details
Installs
- Total 7K
- Win 4K
- Mac 2K
- Linux 2K
May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 3 | 3 | 7 | 6 | 6 | 7 | 10 | 9 | 10 | 5 | 9 | 6 | 5 | 7 | 7 | 6 | 3 | 4 | 8 | 9 | 5 | 5 | 5 | 5 | 7 | 4 | 7 | 2 | 2 | 3 | 5 | 5 | 7 | 1 | 4 | 3 | 10 | 2 | 2 | 5 | 3 | 5 | 5 | 1 | 2 |
Mac | 0 | 3 | 5 | 1 | 2 | 4 | 9 | 5 | 9 | 5 | 7 | 4 | 5 | 6 | 4 | 1 | 2 | 2 | 1 | 4 | 3 | 4 | 3 | 3 | 0 | 3 | 4 | 1 | 2 | 0 | 3 | 2 | 2 | 4 | 4 | 3 | 3 | 2 | 0 | 2 | 1 | 2 | 1 | 0 | 2 | 3 |
Linux | 0 | 3 | 1 | 3 | 2 | 3 | 6 | 4 | 4 | 6 | 5 | 3 | 3 | 3 | 3 | 1 | 2 | 2 | 1 | 1 | 2 | 1 | 8 | 1 | 1 | 2 | 1 | 3 | 1 | 1 | 1 | 3 | 0 | 2 | 1 | 2 | 1 | 0 | 1 | 0 | 2 | 0 | 2 | 1 | 2 | 2 |
Readme
- Source
- raw.githubusercontent.com
One Theme
🎨 A port of Atom's One Dark and One Light UI and Syntax Themes for ST4 and ST3.2+ ⚡.
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
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.