From fd86af9c2d6086b439f94fd47412043d74b1f3b8 Mon Sep 17 00:00:00 2001 From: Mauro Reis Vieira Date: Fri, 18 Jan 2019 20:30:28 +0000 Subject: [PATCH] feat: huge updated in theme settings. --- Default.sublime-commands | 20 +- Main.sublime-menu | 10 +- Meetio Scheme.sublime-settings | 3 - Meetio-Darker.sublime-theme | 2172 --------------------------- Meetio-Lighter.sublime-theme | 2172 --------------------------- Meetio-Palenight.sublime-theme | 2172 --------------------------- Meetio-Theme.sublime-theme | 6 + Meetio.sublime-theme => Meetio.json | 206 +-- Meetio.skins | 33 - Preferences.sublime-settings | 12 +- gulp-tasks/themes.js | 5 +- utils/__init__.py | 2 - utils/activation.py | 102 -- utils/links.py | 17 - 14 files changed, 131 insertions(+), 6801 deletions(-) delete mode 100644 Meetio Scheme.sublime-settings delete mode 100644 Meetio-Darker.sublime-theme delete mode 100644 Meetio-Lighter.sublime-theme delete mode 100644 Meetio-Palenight.sublime-theme create mode 100644 Meetio-Theme.sublime-theme rename Meetio.sublime-theme => Meetio.json (100%) delete mode 100755 Meetio.skins delete mode 100755 utils/activation.py delete mode 100755 utils/links.py diff --git a/Default.sublime-commands b/Default.sublime-commands index a4fc8b5b..39607716 100755 --- a/Default.sublime-commands +++ b/Default.sublime-commands @@ -1,14 +1,18 @@ [ { - "caption": "Meetio: Theme Activate", - "command": "mo_activate" + "caption": "Meetio: Edit Settings", + "command": "edit_settings", "args": + { + "base_file": "${packages}/Meetio/Preferences.sublime-settings", + "default": "// Settings in here override those in \"Default/Preferences.sublime-settings\",\n// and are overridden in turn by syntax-specific settings.\n{\n\t$0\n}\n" + } }, { - "caption": "Meetio: Edit Settings", - "command": "edit_settings", "args": - { - "base_file": "${packages}/Meetio/Preferences.sublime-settings", - "default": "// Settings in here override those in \"Default/Preferences.sublime-settings\",\n// and are overridden in turn by syntax-specific settings.\n{\n\t$0\n}\n" - } + "caption": "Meetio: Theme Configuration", + "command": "edit_settings", "args": + { + "base_file": "${packages}/Meetio/Meetio-Theme.sublime-theme", + "default": "\n\n" + } } ] diff --git a/Main.sublime-menu b/Main.sublime-menu index 1a84f6ab..b8fcbc0d 100755 --- a/Main.sublime-menu +++ b/Main.sublime-menu @@ -12,13 +12,9 @@ "caption": "Meetio", "children": [ - { - "caption": "Theme Activate", - "command": "mo_activate" - }, { "caption": "-" }, { - "caption": "Edit Theme Settings", + "caption": "Edit Settings", "command": "edit_settings", "args": { "base_file": "${packages}/Meetio/Preferences.sublime-settings", @@ -26,10 +22,10 @@ } }, { - "caption": "Edit Scheme Settings", + "caption": "Theme Configuration", "command": "edit_settings", "args": { - "base_file": "${packages}/Meetio/Meetio Scheme.sublime-settings", + "base_file": "${packages}/Meetio/Meetio-Theme.sublime-theme", "default": "{\n$0\n}\n" } }, diff --git a/Meetio Scheme.sublime-settings b/Meetio Scheme.sublime-settings deleted file mode 100644 index 81496d03..00000000 --- a/Meetio Scheme.sublime-settings +++ /dev/null @@ -1,3 +0,0 @@ -{ - "accent": "#7dcac4" -} diff --git a/Meetio-Darker.sublime-theme b/Meetio-Darker.sublime-theme deleted file mode 100644 index 6310345d..00000000 --- a/Meetio-Darker.sublime-theme +++ /dev/null @@ -1,2172 +0,0 @@ -{ - "variables": { - "color_accent": "#7dcac4", - "color_accent_purple": "#6772e4", - "color_white": "#ffffff", - "color_black": "#455A64", - "font_size_sm": 11, - "font_size_md": 12, - "font_size_lg": 14, - "font_size_huge": 24, - "tabset_width": 180, - "tabset_min_width": 74, - "tabset_height": 40, - "tabset_height_large": 52, - "vsc_untracked": "#479e8e", - "vsc_modified": "#c1685c", - "vsc_staged": "#7b88cc", - "vsc_unmerged": "#d33131", - "vsc_ignored": "#a3a3a3", - "button_background_color": [ - "background", - 0.5 - ], - "button_background_color_hover": "var(color_accent)", - "button_min_size": [ - 80, - 28 - ], - "status_bar_label_foreground_color": "var(color_white)", - "status_bar_background_color": "color(var(color_accent) blenda(var(color_black) 30%))", - "tooltip_label_foreground_color": [ - "background", - 1 - ], - "tooltip_background_color": [ - "foreground", - 1 - ] - }, - "rules": [ - { - "class": "popup_control", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1, - "content_margin": [ - 0, - 0 - ] - }, - { - "class": "auto_complete", - "row_padding": [ - 12, - 6 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "auto_complete_label", - "fg": [ - "foreground", - 0.5 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "foreground", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "table_row", - "layer0.tint": "var(color_white)", - "layer0.opacity": 0 - }, - { - "class": "table_row", - "attributes": [ - "selected" - ], - "layer0.opacity": 0.2 - }, - { - "class": "button_control", - "layer0.tint": "var(button_background_color)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "layer0.inner_margin": [ - 6, - 6 - ], - "content_margin": [ - 6, - 10, - 6, - 10 - ], - "min_size": "var(button_min_size)" - }, - { - "class": "button_control", - "attributes": [ - "hover" - ], - "layer0.tint": "var(button_background_color_hover)", - "layer0.opacity": 0.05 - }, - { - "class": "button_control", - "attributes": [ - "pressed" - ], - "layer0.opacity": { - "target": 0.1, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_button_group", - "spacing": 8 - }, - { - "class": "icon_button_control", - "layer0.texture": "", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 0, - "layer0.inner_margin": 0, - "content_margin": 8 - }, - { - "class": "icon_button_control", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "background", - 0 - ], - "layer0.opacity": 1 - }, - { - "class": "icon_regex", - "layer0.texture": "Meetio/assets/default/icon_regex.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_regex", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_regex", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_case", - "layer0.texture": "Meetio/assets/default/icon_case_sensitive.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_case", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_case", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_whole_word", - "layer0.texture": "Meetio/assets/default/icon_whole_word.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_whole_word", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_whole_word", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_wrap", - "layer0.texture": "Meetio/assets/default/icon_wrap.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_wrap", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_wrap", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_in_selection", - "layer0.texture": "Meetio/assets/default/icon_in_selection.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "in_selection", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_in_selection", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_highlight", - "layer0.texture": "Meetio/assets/default/icon_highlight_matches.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_highlight", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_highlight", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_preserve_case", - "layer0.texture": "Meetio/assets/default/icon_preserve_case.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_preserve_case", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_preserve_case", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_context", - "layer0.texture": "Meetio/assets/default/icon_in_context.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_context", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_context", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_use_buffer", - "layer0.texture": "Meetio/assets/default/icon_use_buffer.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_use_buffer", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_use_buffer", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "fold_button_control", - "layer0.texture": "Meetio/assets/default/arrow_right.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 0.4, - "layer0.inner_margin": 0, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "fold_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 1, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "fold_button_control", - "attributes": [ - "expanded" - ], - "layer0.texture": "Meetio/assets/default/arrow_down.png", - "layer0.tint": "var(color_accent)", - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "dialog", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, - { - "class": "disclosure_button_control", - "layer0.texture": "Meetio/assets/default/disclosure.png", - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": { - "target": 0.3, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 0, - 0, - 0, - 0 - ] - }, - { - "class": "disclosure_button_control", - "attributes": [ - "expanded" - ], - "layer0.texture": "Meetio/assets/default/disclosure_expanded.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "disclosure_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.5, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "disclosure_button_control", - "settings": [ - "meetio_sidebar_disclosure", - "!meetio_arrow_folders" - ], - "content_margin": [ - 8, - 8 - ], - "layer0.opacity": 1 - }, - { - "class": "icon_folder", - "layer0.texture": "Meetio/assets/default/folder_closed.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "layer0.texture": "Meetio/assets/default/folder_open.png", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder", - "layer0.texture": "Meetio/assets/default/arrow_folder_closed.png", - "content_margin": [ - 12, - 12 - ], - "settings": [ - "meetio_arrow_folders" - ] - }, - { - "class": "icon_folder", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "layer0.texture": "Meetio/assets/default/arrow_folder_open.png", - "content_margin": [ - 12, - 12 - ], - "settings": [ - "meetio_arrow_folders" - ] - }, - { - "class": "icon_folder_loading", - "layer0.texture": { - "keyframes": [ - "Meetio/assets/default/spinner11.png", - "Meetio/assets/default/spinner10.png", - "Meetio/assets/default/spinner9.png", - "Meetio/assets/default/spinner8.png", - "Meetio/assets/default/spinner7.png", - "Meetio/assets/default/spinner6.png", - "Meetio/assets/default/spinner5.png", - "Meetio/assets/default/spinner4.png", - "Meetio/assets/default/spinner3.png", - "Meetio/assets/default/spinner2.png", - "Meetio/assets/default/spinner1.png", - "Meetio/assets/default/spinner.png" - ], - "loop": true, - "frame_time": 0.08 - }, - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder_dup", - "layer0.texture": "Meetio/assets/default/folder_dup.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_file_type", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "grid_layout_control", - "border_color": "color(var(color_accent) blenda(var(color_black) 30%))", - "border_size": 2 - }, - { - "class": "text_line_control", - "layer0.texture": "", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 20, - 5, - 20, - 5 - ], - "tint_index": 1, - "layer0.tint": [ - "background", - 1 - ], - "content_margin": [ - 10, - 8, - 12, - 8 - ] - }, - { - "class": "text_line_control", - "platforms": [ - "osx", - "linux" - ], - "parents": [ - { - "class": "overlay_control" - } - ], - "content_margin": [ - 52, - 10, - 10, - 10 - ], - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer2.inner_margin": [ - 52, - 48, - 0, - 0 - ], - "layer2.draw_center": false, - "layer2.texture": "Meetio/assets/default/icon_search.png", - "layer2.tint": "var(color_accent)", - "layer2.opacity": 1, - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "platforms": [ - "osx", - "linux" - ], - "parents": [ - { - "class": "switch_project_window" - } - ], - "content_margin": [ - 52, - 10, - 10, - 10 - ], - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "parents": [ - { - "class": "switch_project_window" - } - ], - "layer2.inner_margin": [ - 52, - 48, - 0, - 0 - ], - "layer2.draw_center": false, - "layer2.texture": "Meetio/assets/default/icon_search.png", - "layer2.tint": "var(color_accent)", - "layer2.opacity": 1, - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "dropdown_button_control", - "content_margin": [ - 12, - 12 - ], - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 0, - 0 - ] - }, - { - "class": "dropdown_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "label_control", - "fg": [ - "foreground", - 1 - ], - "font.bold": false - }, - { - "class": "label_control", - "parents": [ - { - "class": "button_control" - } - ], - "color": [ - "foreground", - 1 - ], - "font.bold": true - }, - { - "class": "label_control", - "parents": [ - { - "class": "panel_control" - } - ], - "color": [ - "foreground", - 1 - ], - "font.bold": true - }, - { - "class": "title_label_control", - "fg": [ - "foreground", - 1 - ], - "font.size": "var(font_size_huge)" - }, - { - "class": "label_control", - "parents": [ - { - "class": "button_control" - } - ] - }, - { - "class": "close_button", - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 0, - 0 - ], - "content_margin": [ - 8, - 7 - ] - }, - { - "class": "close_button", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "hover" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "close_button", - "attributes": [ - "dirty" - ], - "layer0.texture": "Meetio/assets/default/dirty_icon.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "close_button", - "attributes": [ - "hover", - "dirty" - ], - "layer0.texture": "Meetio/assets/default/dirty_icon.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "panel_control", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.inner_margin": [ - 2, - 2, - 2, - 2 - ], - "layer0.opacity": 1, - "content_margin": [ - 6, - 12, - 6, - 12 - ] - }, - { - "class": "overlay_control", - "layer0.texture": "Meetio/assets/default/overlay_bg.png", - "layer0.inner_margin": [ - 24, - 4, - 24, - 33 - ], - "layer0.opacity": 1, - "layer0.tint": [ - "background", - 1 - ], - "layer1.texture": "Meetio/assets/default/quick_panel_background.png", - "layer1.inner_margin": [ - 16, - 0, - 16, - 25 - ], - "layer1.opacity": 1, - "layer.tint": [ - "background", - 1 - ], - "content_margin": [ - 12, - 4, - 13, - 28 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer0.opacity": 1, - "layer0.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer1.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer1.opacity": 1, - "content_margin": [ - 32, - 8, - 32, - 8 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "switch_project_window" - } - ], - "layer0.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer1.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer1.tint": [ - "background", - 1 - ], - "content_margin": [ - 32, - 8, - 32, - 8 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "window" - } - ] - }, - { - "class": "panel_grid_control", - "inside_spacing": 4, - "outside_hspacing": 4, - "outside_vspacing": 4 - }, - { - "class": "panel_close_button", - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.4, - "speed": 4, - "interpolation": "smoothstep" - }, - "layer1.opacity": 0, - "content_margin": [ - 0, - 0 - ] - }, - { - "class": "panel_close_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "progress_bar_control", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, - { - "class": "progress_gauge_control", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 0, - 8 - ] - }, - { - "class": "mini_quick_panel_row", - "layer0.tint": [ - "background", - 1 - ], - "layer0.inner_margin": [ - 2, - 2, - 2, - 2 - ], - "layer0.opacity": 1 - }, - { - "class": "mini_quick_panel_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 1 - ] - }, - { - "class": "quick_panel", - "row_padding": [ - 32, - 12 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel", - "row_padding": [ - 32, - 12 - ], - "layer0.tint": [ - 38, - 50, - 56, - 0 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 1 - ], - "layer1.opacity": 0 - }, - { - "class": "quick_panel_label", - "fg": "var(color_accent)", - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_label", - "fg": [ - "foreground", - 0.8 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_path_label", - "fg": [ - "foreground", - 0.4 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_score_label", - "fg": [ - "foreground", - 0.8 - ], - "selected_fg": [ - "background", - 1 - ] - }, - { - "class": "scroll_area_control", - "settings": [ - "overlay_scroll_bars" - ], - "overlay": true - }, - { - "class": "scroll_area_control", - "settings": [ - "!overlay_scroll_bars" - ], - "overlay": false - }, - { - "class": "scroll_area_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "content_margin": [ - 0, - 10, - 0, - 10 - ] - }, - { - "class": "scroll_bar_control", - "layer0.opacity": 1, - "content_margin": 4, - "tint_index": 0 - }, - { - "class": "scroll_bar_control", - "settings": [ - "overlay_scroll_bars" - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_bar_control", - "settings": [ - "!overlay_scroll_bars" - ], - "layer0.opacity": 1 - }, - { - "class": "scroll_track_control", - "layer0.texture": "Meetio/assets/default/scroll_bar.png", - "layer0.opacity": 1, - "layer0.inner_margin": 2, - "content_margin": [ - 4, - 4, - 3, - 4 - ] - }, - { - "class": "puck_control", - "layer0.texture": "Meetio/assets/default/scroll_puck.png", - "layer0.opacity": 1, - "layer0.inner_margin": 2, - "content_margin": [ - 0, - 12 - ] - }, - { - "class": "scroll_corner_control", - "layer0.opacity": 1, - "tint_index": 0 - }, - { - "class": "scroll_track_control", - "attributes": [ - "horizontal" - ], - "layer0.texture": "Meetio/assets/default/scroll_bar_horiz.png", - "content_margin": [ - 4, - 4, - 4, - 3 - ] - }, - { - "class": "puck_control", - "attributes": [ - "horizontal" - ], - "layer0.texture": "Meetio/assets/default/scroll_puck_horiz.png", - "content_margin": [ - 12, - 0 - ] - }, - { - "class": "scroll_bar_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_corner_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_bar_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer0.opacity": 0, - "content_margin": [ - 4, - 0, - 0, - 0 - ] - }, - { - "class": "sidebar_container", - "layer0.tint": [ - "background", - 0.92 - ], - "layer0.opacity": 1, - "content_margin": [ - 0, - 6, - 0, - 0 - ] - }, - { - "class": "sidebar_tree", - "row_padding": [ - 20, - 6 - ], - "indent": 10, - "indent_offset": 2, - "indent_top_level": false, - "dark_content": false, - "spacer_rows": true - }, - { - "class": "sidebar_tree", - "platforms": [ - "windows" - ], - "row_padding": [ - 20, - 6 - ] - }, - { - "class": "sidebar_tree", - "settings": [ - "meetio_compact_sidebar" - ], - "indent_offset": 8, - "row_padding": [ - 14, - 3 - ] - }, - { - "class": "tree_row", - "attributes": [ - "!hover" - ], - "layer0.opacity": 0 - }, - { - "class": "tree_row", - "attributes": [ - "selectable", - "hover" - ], - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": 0.1 - }, - { - "class": "tree_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": 0.1 - }, - { - "class": "sidebar_heading", - "color": [ - "foreground", - 0.4 - ], - "font.bold": true, - "font.size": "var(font_size_sm)" - }, - { - "class": "sidebar_heading", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "selected" - ] - } - ] - }, - { - "class": "sidebar_label", - "color": [ - "foreground", - 0.8 - ], - "font.size": "var(font_size_md)", - "font.bold": false, - "font.italic": false - }, - { - "class": "sidebar_label", - "settings": [ - "meetio_sidebar_font_big" - ], - "font.size": "var(font_size_lg)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "hover" - ] - } - ], - "color": [ - "foreground", - 0.8 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "selected" - ] - } - ], - "font.bold": false, - "color": [ - "foreground", - 0.9 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable" - ] - } - ], - "color": [ - "foreground", - 0.8 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable" - ] - } - ], - "settings": [ - "bold_folder_labels" - ], - "font.bold": true - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable", - "selected" - ] - } - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "color": "var(color_accent)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "settings": [ - "bold_folder_labels" - ], - "font.bold": true - }, - { - "class": "sidebar_label", - "attributes": [ - "transient" - ], - "font.italic": false - }, - { - "class": "status_bar", - "layer0.tint": "var(status_bar_background_color)", - "layer0.opacity": 1, - "content_margin": [ - 10, - 4, - 0, - 4 - ] - }, - { - "class": "status_bar", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": [ - 10, - 6, - 0, - 6 - ] - }, - { - "class": "panel_button_control", - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(status_bar_label_foreground_color)", - "layer0.opacity": 1, - "content_margin": 9, - "layer0.inner_margin": 4 - }, - { - "class": "panel_button_control", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": 11, - "layer0.inner_margin": 4 - }, - { - "class": "vcs_branch_icon", - "layer0.texture": "Meetio/assets/default/icon_branch.png", - "layer0.tint": "var(status_bar_label_foreground_color)", - "layer0.opacity": 1, - "content_margin": 8, - "layer0.inner_margin": 2 - }, - { - "class": "vcs_branch_icon", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": 9, - "layer0.inner_margin": 2 - }, - { - "class": "panel_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "vcs_branch_icon", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "status_container", - "content_margin": [ - 8, - 0, - 0, - 0 - ] - }, - { - "class": "status_button", - "content_margin": [ - 10, - 0, - 10, - 0 - ], - "min_size": [ - 80, - 0 - ] - }, - { - "class": "label_control", - "parents": [ - { - "class": "status_bar" - } - ], - "font.size": "var(font_size_sm)", - "color": "var(status_bar_label_foreground_color)", - "font.bold": false - }, - { - "class": "tabset_control", - "layer0.opacity": 1, - "layer0.tint": [ - "background", - 0.92 - ], - "tint_index": 1, - "tab_overlap": 0, - "tab_width": "var(tabset_width)", - "tab_min_width": "var(tabset_min_width)", - "tab_height": "var(tabset_height)", - "mouse_wheel_switch": false - }, - { - "class": "tabset_control", - "settings": [ - "mouse_wheel_switches_tabs", - "!enable_tab_scrolling" - ], - "mouse_wheel_switch": true - }, - { - "class": "tabset_control", - "settings": [ - "meetio_tabs_autowidth" - ], - "tab_width": 0 - }, - { - "class": "tabset_control", - "settings": [ - "meetio_tabs_big" - ], - "tab_height": "var(tabset_height_large)" - }, - { - "class": "tab_control", - "layer0.tint": [ - "background", - 0 - ], - "layer0.inner_margin": [ - 24, - 8 - ], - "layer0.opacity": 1, - "tint_index": 0, - "layer1.tint": [ - "background", - 1 - ], - "layer1.inner_margin": 8, - "layer1.opacity": 0, - "layer2.inner_margin": [ - 0, - 0 - ], - "layer2.opacity": { - "target": 0, - "speed": 3, - "interpolation": "smoothstep" - }, - "content_margin": [ - 8, - 0, - 8, - 0 - ], - "max_margin_trim": 0 - }, - { - "class": "tab_control", - "settings": [ - "show_tab_close_buttons" - ], - "content_margin": [ - 8, - 8 - ] - }, - { - "class": "tab_control", - "attributes": [ - "selected" - ], - "layer1.opacity": 1 - }, - { - "class": "tab_label", - "fg": [ - "foreground", - 0.5 - ], - "font.bold": false - }, - { - "class": "tab_label", - "settings": [ - "meetio_tabs_bold" - ], - "font.bold": true - }, - { - "class": "tab_label", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected" - ] - } - ], - "fg": [ - "foreground", - 1 - ] - }, - { - "class": "tab_label", - "attributes": [ - "transient" - ], - "font.italic": true - }, - { - "class": "tab_close_button", - "content_margin": [ - 0, - 0 - ], - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": [ - "foreground", - 0.5 - ], - "layer0.opacity": 1, - "layer0.inner_margin": 0, - "layer1.texture": "Meetio/assets/default/dirty_icon.png", - "layer1.tint": "var(color_accent)", - "layer1.inner_margin": 0 - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "content_margin": [ - 7, - 7 - ] - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1, - "layer0.tint": "var(color_accent)" - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 1, - "layer1.opacity": 0 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "dirty" - ] - } - ], - "layer0.opacity": 0, - "layer1.opacity": 1, - "content_margin": [ - 8, - 8 - ] - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "dirty" - ] - } - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected", - "dirty" - ] - } - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected", - "dirty" - ] - } - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "scroll_tabs_left_button", - "layer0.texture": "Meetio/assets/default/arrow_left.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 10, - 10 - ] - }, - { - "class": "scroll_tabs_left_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.8, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "scroll_tabs_right_button", - "layer0.texture": "Meetio/assets/default/arrow_right.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 10, - 10 - ] - }, - { - "class": "scroll_tabs_right_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.8, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "show_tabs_dropdown_button", - "content_margin": [ - 12, - 12 - ], - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": 0 - }, - { - "class": "show_tabs_dropdown_button", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "title_bar", - "settings": [ - "meetio_titlebar" - ], - "bg": [ - "background", - 0.92 - ], - "fg": [ - "foreground", - 1 - ] - }, - { - "class": "tool_tip_control", - "layer0.tint": "var(tooltip_background_color)", - "layer0.opacity": 1, - "content_margin": [ - 12, - 8 - ] - }, - { - "class": "tool_tip_label_control", - "fg": "var(tooltip_label_foreground_color)" - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "untracked" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "modified" - ] - } - ], - "layer0.tint": "var(vsc_modified)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "staged" - ] - } - ], - "layer0.tint": "var(vsc_staged)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "added" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "unmerged" - ] - } - ], - "layer0.tint": "var(vsc_unmerged)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "ignored" - ] - } - ], - "color": "color(var(vsc_ignored)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "untracked" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "color": "var(vsc_untracked)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "modified" - ] - } - ], - "color": "var(vsc_modified)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "staged" - ] - } - ], - "color": "var(vsc_staged)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "added" - ] - } - ], - "color": "var(vsc_untracked)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "unmerged" - ] - } - ], - "color": "var(vsc_unmerged)" - }, - { - "class": "minimap_control", - "settings": [ - "always_show_minimap_viewport" - ], - "viewport_color": "color(var(color_accent) alpha(0.2))", - "viewport_opacity": 0.5 - }, - { - "class": "minimap_control", - "settings": [ - "!always_show_minimap_viewport" - ], - "viewport_opacity": { - "target": 0, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "minimap_control", - "attributes": [ - "hover" - ], - "settings": [ - "!always_show_minimap_viewport" - ], - "viewport_opacity": { - "target": 0.4, - "speed": 20, - "interpolation": "smoothstep" - } - } - ] -} \ No newline at end of file diff --git a/Meetio-Lighter.sublime-theme b/Meetio-Lighter.sublime-theme deleted file mode 100644 index 32ffadb4..00000000 --- a/Meetio-Lighter.sublime-theme +++ /dev/null @@ -1,2172 +0,0 @@ -{ - "variables": { - "color_accent": "#7dcac4", - "color_accent_purple": "#6772e4", - "color_white": "#ffffff", - "color_black": "#455A64", - "font_size_sm": 11, - "font_size_md": 12, - "font_size_lg": 14, - "font_size_huge": 24, - "tabset_width": 180, - "tabset_min_width": 74, - "tabset_height": 40, - "tabset_height_large": 52, - "vsc_untracked": "#479e8e", - "vsc_modified": "#c1685c", - "vsc_staged": "#7b88cc", - "vsc_unmerged": "#d33131", - "vsc_ignored": "#a3a3a3", - "button_background_color": [ - "background", - 0.5 - ], - "button_background_color_hover": "var(color_accent)", - "button_min_size": [ - 80, - 28 - ], - "status_bar_label_foreground_color": "var(color_white)", - "status_bar_background_color": "color(var(color_accent) blenda(var(color_black) 30%))", - "tooltip_label_foreground_color": [ - "background", - 1 - ], - "tooltip_background_color": [ - "foreground", - 1 - ] - }, - "rules": [ - { - "class": "popup_control", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1, - "content_margin": [ - 0, - 0 - ] - }, - { - "class": "auto_complete", - "row_padding": [ - 12, - 6 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "auto_complete_label", - "fg": [ - "foreground", - 0.5 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "foreground", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "table_row", - "layer0.tint": "var(color_white)", - "layer0.opacity": 0 - }, - { - "class": "table_row", - "attributes": [ - "selected" - ], - "layer0.opacity": 0.2 - }, - { - "class": "button_control", - "layer0.tint": "var(button_background_color)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "layer0.inner_margin": [ - 6, - 6 - ], - "content_margin": [ - 6, - 10, - 6, - 10 - ], - "min_size": "var(button_min_size)" - }, - { - "class": "button_control", - "attributes": [ - "hover" - ], - "layer0.tint": "var(button_background_color_hover)", - "layer0.opacity": 0.05 - }, - { - "class": "button_control", - "attributes": [ - "pressed" - ], - "layer0.opacity": { - "target": 0.1, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_button_group", - "spacing": 8 - }, - { - "class": "icon_button_control", - "layer0.texture": "", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 0, - "layer0.inner_margin": 0, - "content_margin": 8 - }, - { - "class": "icon_button_control", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "background", - 0 - ], - "layer0.opacity": 1 - }, - { - "class": "icon_regex", - "layer0.texture": "Meetio/assets/default/icon_regex.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_regex", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_regex", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_case", - "layer0.texture": "Meetio/assets/default/icon_case_sensitive.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_case", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_case", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_whole_word", - "layer0.texture": "Meetio/assets/default/icon_whole_word.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_whole_word", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_whole_word", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_wrap", - "layer0.texture": "Meetio/assets/default/icon_wrap.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_wrap", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_wrap", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_in_selection", - "layer0.texture": "Meetio/assets/default/icon_in_selection.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "in_selection", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_in_selection", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_highlight", - "layer0.texture": "Meetio/assets/default/icon_highlight_matches.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_highlight", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_highlight", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_preserve_case", - "layer0.texture": "Meetio/assets/default/icon_preserve_case.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_preserve_case", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_preserve_case", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_context", - "layer0.texture": "Meetio/assets/default/icon_in_context.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_context", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_context", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_use_buffer", - "layer0.texture": "Meetio/assets/default/icon_use_buffer.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_use_buffer", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_use_buffer", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "fold_button_control", - "layer0.texture": "Meetio/assets/default/arrow_right.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 0.4, - "layer0.inner_margin": 0, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "fold_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 1, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "fold_button_control", - "attributes": [ - "expanded" - ], - "layer0.texture": "Meetio/assets/default/arrow_down.png", - "layer0.tint": "var(color_accent)", - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "dialog", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, - { - "class": "grid_layout_control", - "border_color": "color(var(color_accent) blenda(var(color_black) 30%))", - "border_size": 2 - }, - { - "class": "text_line_control", - "layer0.texture": "", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 20, - 5, - 20, - 5 - ], - "tint_index": 1, - "layer0.tint": [ - "background", - 1 - ], - "content_margin": [ - 10, - 8, - 12, - 8 - ] - }, - { - "class": "text_line_control", - "platforms": [ - "osx", - "linux" - ], - "parents": [ - { - "class": "overlay_control" - } - ], - "content_margin": [ - 52, - 10, - 10, - 10 - ], - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer2.inner_margin": [ - 52, - 48, - 0, - 0 - ], - "layer2.draw_center": false, - "layer2.texture": "Meetio/assets/default/icon_search.png", - "layer2.tint": "var(color_accent)", - "layer2.opacity": 1, - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "platforms": [ - "osx", - "linux" - ], - "parents": [ - { - "class": "switch_project_window" - } - ], - "content_margin": [ - 52, - 10, - 10, - 10 - ], - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "parents": [ - { - "class": "switch_project_window" - } - ], - "layer2.inner_margin": [ - 52, - 48, - 0, - 0 - ], - "layer2.draw_center": false, - "layer2.texture": "Meetio/assets/default/icon_search.png", - "layer2.tint": "var(color_accent)", - "layer2.opacity": 1, - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "dropdown_button_control", - "content_margin": [ - 12, - 12 - ], - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 0, - 0 - ] - }, - { - "class": "dropdown_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "disclosure_button_control", - "layer0.texture": "Meetio/assets/default/disclosure.png", - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": { - "target": 0.3, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 0, - 0, - 0, - 0 - ] - }, - { - "class": "disclosure_button_control", - "attributes": [ - "expanded" - ], - "layer0.texture": "Meetio/assets/default/disclosure_expanded.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "disclosure_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.5, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "disclosure_button_control", - "settings": [ - "meetio_sidebar_disclosure", - "!meetio_arrow_folders" - ], - "content_margin": [ - 8, - 8 - ], - "layer0.opacity": 1 - }, - { - "class": "icon_folder", - "layer0.texture": "Meetio/assets/default/folder_closed.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "layer0.texture": "Meetio/assets/default/folder_open.png", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder", - "layer0.texture": "Meetio/assets/default/arrow_folder_closed.png", - "content_margin": [ - 12, - 12 - ], - "settings": [ - "meetio_arrow_folders" - ] - }, - { - "class": "icon_folder", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "layer0.texture": "Meetio/assets/default/arrow_folder_open.png", - "content_margin": [ - 12, - 12 - ], - "settings": [ - "meetio_arrow_folders" - ] - }, - { - "class": "icon_folder_loading", - "layer0.texture": { - "keyframes": [ - "Meetio/assets/default/spinner11.png", - "Meetio/assets/default/spinner10.png", - "Meetio/assets/default/spinner9.png", - "Meetio/assets/default/spinner8.png", - "Meetio/assets/default/spinner7.png", - "Meetio/assets/default/spinner6.png", - "Meetio/assets/default/spinner5.png", - "Meetio/assets/default/spinner4.png", - "Meetio/assets/default/spinner3.png", - "Meetio/assets/default/spinner2.png", - "Meetio/assets/default/spinner1.png", - "Meetio/assets/default/spinner.png" - ], - "loop": true, - "frame_time": 0.08 - }, - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder_dup", - "layer0.texture": "Meetio/assets/default/folder_dup.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_file_type", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "label_control", - "fg": [ - "foreground", - 1 - ], - "font.bold": false - }, - { - "class": "label_control", - "parents": [ - { - "class": "button_control" - } - ], - "color": [ - "foreground", - 1 - ], - "font.bold": true - }, - { - "class": "label_control", - "parents": [ - { - "class": "panel_control" - } - ], - "color": [ - "foreground", - 1 - ], - "font.bold": true - }, - { - "class": "title_label_control", - "fg": [ - "foreground", - 1 - ], - "font.size": "var(font_size_huge)" - }, - { - "class": "label_control", - "parents": [ - { - "class": "button_control" - } - ] - }, - { - "class": "close_button", - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 0, - 0 - ], - "content_margin": [ - 8, - 7 - ] - }, - { - "class": "close_button", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "hover" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "close_button", - "attributes": [ - "dirty" - ], - "layer0.texture": "Meetio/assets/default/dirty_icon.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "close_button", - "attributes": [ - "hover", - "dirty" - ], - "layer0.texture": "Meetio/assets/default/dirty_icon.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "panel_control", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.inner_margin": [ - 2, - 2, - 2, - 2 - ], - "layer0.opacity": 1, - "content_margin": [ - 6, - 12, - 6, - 12 - ] - }, - { - "class": "overlay_control", - "layer0.texture": "Meetio/assets/default/overlay_bg.png", - "layer0.inner_margin": [ - 24, - 4, - 24, - 33 - ], - "layer0.opacity": 1, - "layer0.tint": [ - "background", - 1 - ], - "layer1.texture": "Meetio/assets/default/quick_panel_background.png", - "layer1.inner_margin": [ - 16, - 0, - 16, - 25 - ], - "layer1.opacity": 1, - "layer.tint": [ - "background", - 1 - ], - "content_margin": [ - 12, - 4, - 13, - 28 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer0.opacity": 1, - "layer0.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer1.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer1.opacity": 1, - "content_margin": [ - 32, - 8, - 32, - 8 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "switch_project_window" - } - ], - "layer0.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer1.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer1.tint": [ - "background", - 1 - ], - "content_margin": [ - 32, - 8, - 32, - 8 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "window" - } - ] - }, - { - "class": "panel_grid_control", - "inside_spacing": 4, - "outside_hspacing": 4, - "outside_vspacing": 4 - }, - { - "class": "panel_close_button", - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.4, - "speed": 4, - "interpolation": "smoothstep" - }, - "layer1.opacity": 0, - "content_margin": [ - 0, - 0 - ] - }, - { - "class": "panel_close_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "progress_bar_control", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, - { - "class": "progress_gauge_control", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 0, - 8 - ] - }, - { - "class": "mini_quick_panel_row", - "layer0.tint": [ - "background", - 1 - ], - "layer0.inner_margin": [ - 2, - 2, - 2, - 2 - ], - "layer0.opacity": 1 - }, - { - "class": "mini_quick_panel_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 1 - ] - }, - { - "class": "quick_panel", - "row_padding": [ - 32, - 12 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel", - "row_padding": [ - 32, - 12 - ], - "layer0.tint": [ - 38, - 50, - 56, - 0 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 1 - ], - "layer1.opacity": 0 - }, - { - "class": "quick_panel_label", - "fg": "var(color_accent)", - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_label", - "fg": [ - "foreground", - 0.8 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_path_label", - "fg": [ - "foreground", - 0.4 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_score_label", - "fg": [ - "foreground", - 0.8 - ], - "selected_fg": [ - "background", - 1 - ] - }, - { - "class": "scroll_area_control", - "settings": [ - "overlay_scroll_bars" - ], - "overlay": true - }, - { - "class": "scroll_area_control", - "settings": [ - "!overlay_scroll_bars" - ], - "overlay": false - }, - { - "class": "scroll_area_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "content_margin": [ - 0, - 10, - 0, - 10 - ] - }, - { - "class": "scroll_bar_control", - "layer0.opacity": 1, - "content_margin": 4, - "tint_index": 0 - }, - { - "class": "scroll_bar_control", - "settings": [ - "overlay_scroll_bars" - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_bar_control", - "settings": [ - "!overlay_scroll_bars" - ], - "layer0.opacity": 1 - }, - { - "class": "scroll_track_control", - "layer0.texture": "Meetio/assets/default/scroll_bar.png", - "layer0.opacity": 1, - "layer0.inner_margin": 2, - "content_margin": [ - 4, - 4, - 3, - 4 - ] - }, - { - "class": "puck_control", - "layer0.texture": "Meetio/assets/default/scroll_puck.png", - "layer0.opacity": 1, - "layer0.inner_margin": 2, - "content_margin": [ - 0, - 12 - ] - }, - { - "class": "scroll_corner_control", - "layer0.opacity": 1, - "tint_index": 0 - }, - { - "class": "scroll_track_control", - "attributes": [ - "horizontal" - ], - "layer0.texture": "Meetio/assets/default/scroll_bar_horiz.png", - "content_margin": [ - 4, - 4, - 4, - 3 - ] - }, - { - "class": "puck_control", - "attributes": [ - "horizontal" - ], - "layer0.texture": "Meetio/assets/default/scroll_puck_horiz.png", - "content_margin": [ - 12, - 0 - ] - }, - { - "class": "scroll_bar_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_corner_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_bar_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer0.opacity": 0, - "content_margin": [ - 4, - 0, - 0, - 0 - ] - }, - { - "class": "sidebar_container", - "layer0.tint": [ - "background", - 0.92 - ], - "layer0.opacity": 1, - "content_margin": [ - 0, - 6, - 0, - 0 - ] - }, - { - "class": "sidebar_tree", - "row_padding": [ - 20, - 6 - ], - "indent": 10, - "indent_offset": 2, - "indent_top_level": false, - "dark_content": false, - "spacer_rows": true - }, - { - "class": "sidebar_tree", - "platforms": [ - "windows" - ], - "row_padding": [ - 20, - 6 - ] - }, - { - "class": "sidebar_tree", - "settings": [ - "meetio_compact_sidebar" - ], - "indent_offset": 8, - "row_padding": [ - 14, - 3 - ] - }, - { - "class": "tree_row", - "attributes": [ - "!hover" - ], - "layer0.opacity": 0 - }, - { - "class": "tree_row", - "attributes": [ - "selectable", - "hover" - ], - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": 0.1 - }, - { - "class": "tree_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": 0.1 - }, - { - "class": "sidebar_heading", - "color": [ - "foreground", - 0.4 - ], - "font.bold": true, - "font.size": "var(font_size_sm)" - }, - { - "class": "sidebar_heading", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "selected" - ] - } - ] - }, - { - "class": "sidebar_label", - "color": [ - "foreground", - 0.8 - ], - "font.size": "var(font_size_md)", - "font.bold": false, - "font.italic": false - }, - { - "class": "sidebar_label", - "settings": [ - "meetio_sidebar_font_big" - ], - "font.size": "var(font_size_lg)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "hover" - ] - } - ], - "color": [ - "foreground", - 0.8 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "selected" - ] - } - ], - "font.bold": false, - "color": [ - "foreground", - 0.9 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable" - ] - } - ], - "color": [ - "foreground", - 0.8 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable" - ] - } - ], - "settings": [ - "bold_folder_labels" - ], - "font.bold": true - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable", - "selected" - ] - } - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "color": "var(color_accent)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "settings": [ - "bold_folder_labels" - ], - "font.bold": true - }, - { - "class": "sidebar_label", - "attributes": [ - "transient" - ], - "font.italic": false - }, - { - "class": "status_bar", - "layer0.tint": "var(status_bar_background_color)", - "layer0.opacity": 1, - "content_margin": [ - 10, - 4, - 0, - 4 - ] - }, - { - "class": "status_bar", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": [ - 10, - 6, - 0, - 6 - ] - }, - { - "class": "panel_button_control", - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(status_bar_label_foreground_color)", - "layer0.opacity": 1, - "content_margin": 9, - "layer0.inner_margin": 4 - }, - { - "class": "panel_button_control", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": 11, - "layer0.inner_margin": 4 - }, - { - "class": "vcs_branch_icon", - "layer0.texture": "Meetio/assets/default/icon_branch.png", - "layer0.tint": "var(status_bar_label_foreground_color)", - "layer0.opacity": 1, - "content_margin": 8, - "layer0.inner_margin": 2 - }, - { - "class": "vcs_branch_icon", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": 9, - "layer0.inner_margin": 2 - }, - { - "class": "panel_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "vcs_branch_icon", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "status_container", - "content_margin": [ - 8, - 0, - 0, - 0 - ] - }, - { - "class": "status_button", - "content_margin": [ - 10, - 0, - 10, - 0 - ], - "min_size": [ - 80, - 0 - ] - }, - { - "class": "label_control", - "parents": [ - { - "class": "status_bar" - } - ], - "font.size": "var(font_size_sm)", - "color": "var(status_bar_label_foreground_color)", - "font.bold": false - }, - { - "class": "tabset_control", - "layer0.opacity": 1, - "layer0.tint": [ - "background", - 0.92 - ], - "tint_index": 1, - "tab_overlap": 0, - "tab_width": "var(tabset_width)", - "tab_min_width": "var(tabset_min_width)", - "tab_height": "var(tabset_height)", - "mouse_wheel_switch": false - }, - { - "class": "tabset_control", - "settings": [ - "mouse_wheel_switches_tabs", - "!enable_tab_scrolling" - ], - "mouse_wheel_switch": true - }, - { - "class": "tabset_control", - "settings": [ - "meetio_tabs_autowidth" - ], - "tab_width": 0 - }, - { - "class": "tabset_control", - "settings": [ - "meetio_tabs_big" - ], - "tab_height": "var(tabset_height_large)" - }, - { - "class": "tab_control", - "layer0.tint": [ - "background", - 0 - ], - "layer0.inner_margin": [ - 24, - 8 - ], - "layer0.opacity": 1, - "tint_index": 0, - "layer1.tint": [ - "background", - 1 - ], - "layer1.inner_margin": 8, - "layer1.opacity": 0, - "layer2.inner_margin": [ - 0, - 0 - ], - "layer2.opacity": { - "target": 0, - "speed": 3, - "interpolation": "smoothstep" - }, - "content_margin": [ - 8, - 0, - 8, - 0 - ], - "max_margin_trim": 0 - }, - { - "class": "tab_control", - "settings": [ - "show_tab_close_buttons" - ], - "content_margin": [ - 8, - 8 - ] - }, - { - "class": "tab_control", - "attributes": [ - "selected" - ], - "layer1.opacity": 1 - }, - { - "class": "tab_label", - "fg": [ - "foreground", - 0.5 - ], - "font.bold": false - }, - { - "class": "tab_label", - "settings": [ - "meetio_tabs_bold" - ], - "font.bold": true - }, - { - "class": "tab_label", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected" - ] - } - ], - "fg": [ - "foreground", - 1 - ] - }, - { - "class": "tab_label", - "attributes": [ - "transient" - ], - "font.italic": true - }, - { - "class": "tab_close_button", - "content_margin": [ - 0, - 0 - ], - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": [ - "foreground", - 0.5 - ], - "layer0.opacity": 1, - "layer0.inner_margin": 0, - "layer1.texture": "Meetio/assets/default/dirty_icon.png", - "layer1.tint": "var(color_accent)", - "layer1.inner_margin": 0 - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "content_margin": [ - 7, - 7 - ] - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1, - "layer0.tint": "var(color_accent)" - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 1, - "layer1.opacity": 0 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "dirty" - ] - } - ], - "layer0.opacity": 0, - "layer1.opacity": 1, - "content_margin": [ - 8, - 8 - ] - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "dirty" - ] - } - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected", - "dirty" - ] - } - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected", - "dirty" - ] - } - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "scroll_tabs_left_button", - "layer0.texture": "Meetio/assets/default/arrow_left.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 10, - 10 - ] - }, - { - "class": "scroll_tabs_left_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.8, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "scroll_tabs_right_button", - "layer0.texture": "Meetio/assets/default/arrow_right.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 10, - 10 - ] - }, - { - "class": "scroll_tabs_right_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.8, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "show_tabs_dropdown_button", - "content_margin": [ - 12, - 12 - ], - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": 0 - }, - { - "class": "show_tabs_dropdown_button", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "tool_tip_control", - "layer0.tint": "var(tooltip_background_color)", - "layer0.opacity": 1, - "content_margin": [ - 12, - 8 - ] - }, - { - "class": "tool_tip_label_control", - "fg": "var(tooltip_label_foreground_color)" - }, - { - "class": "minimap_control", - "settings": [ - "always_show_minimap_viewport" - ], - "viewport_color": "color(var(color_accent) alpha(0.2))", - "viewport_opacity": 0.5 - }, - { - "class": "minimap_control", - "settings": [ - "!always_show_minimap_viewport" - ], - "viewport_opacity": { - "target": 0, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "minimap_control", - "attributes": [ - "hover" - ], - "settings": [ - "!always_show_minimap_viewport" - ], - "viewport_opacity": { - "target": 0.4, - "speed": 20, - "interpolation": "smoothstep" - } - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "untracked" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "modified" - ] - } - ], - "layer0.tint": "var(vsc_modified)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "staged" - ] - } - ], - "layer0.tint": "var(vsc_staged)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "added" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "unmerged" - ] - } - ], - "layer0.tint": "var(vsc_unmerged)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "ignored" - ] - } - ], - "color": "color(var(vsc_ignored)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "untracked" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "color": "var(vsc_untracked)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "modified" - ] - } - ], - "color": "var(vsc_modified)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "staged" - ] - } - ], - "color": "var(vsc_staged)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "added" - ] - } - ], - "color": "var(vsc_untracked)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "unmerged" - ] - } - ], - "color": "var(vsc_unmerged)" - }, - { - "class": "title_bar", - "settings": [ - "meetio_titlebar" - ], - "bg": [ - "background", - 0.92 - ], - "fg": [ - "foreground", - 1 - ] - } - ] -} \ No newline at end of file diff --git a/Meetio-Palenight.sublime-theme b/Meetio-Palenight.sublime-theme deleted file mode 100644 index bc69bb62..00000000 --- a/Meetio-Palenight.sublime-theme +++ /dev/null @@ -1,2172 +0,0 @@ -{ - "variables": { - "color_accent": "#7dcac4", - "color_accent_purple": "#6772e4", - "color_white": "#ffffff", - "color_black": "#455A64", - "font_size_sm": 11, - "font_size_md": 12, - "font_size_lg": 14, - "font_size_huge": 24, - "tabset_width": 180, - "tabset_min_width": 74, - "tabset_height": 40, - "tabset_height_large": 52, - "vsc_untracked": "#479e8e", - "vsc_modified": "#c1685c", - "vsc_staged": "#7b88cc", - "vsc_unmerged": "#d33131", - "vsc_ignored": "#a3a3a3", - "button_background_color": [ - "background", - 0.5 - ], - "button_background_color_hover": "var(color_accent)", - "button_min_size": [ - 80, - 28 - ], - "status_bar_label_foreground_color": "var(color_white)", - "status_bar_background_color": "color(var(color_accent) blenda(var(color_black) 30%))", - "tooltip_label_foreground_color": [ - "background", - 1 - ], - "tooltip_background_color": [ - "foreground", - 1 - ] - }, - "rules": [ - { - "class": "popup_control", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1, - "content_margin": [ - 0, - 0 - ] - }, - { - "class": "auto_complete", - "row_padding": [ - 12, - 6 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "auto_complete_label", - "fg": [ - "foreground", - 0.5 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "foreground", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "table_row", - "layer0.tint": "var(color_white)", - "layer0.opacity": 0 - }, - { - "class": "table_row", - "attributes": [ - "selected" - ], - "layer0.opacity": 0.2 - }, - { - "class": "fold_button_control", - "layer0.texture": "Meetio/assets/default/arrow_right.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 0.4, - "layer0.inner_margin": 0, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "fold_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 1, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "fold_button_control", - "attributes": [ - "expanded" - ], - "layer0.texture": "Meetio/assets/default/arrow_down.png", - "layer0.tint": "var(color_accent)", - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "dialog", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, - { - "class": "disclosure_button_control", - "layer0.texture": "Meetio/assets/default/disclosure.png", - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": { - "target": 0.3, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 0, - 0, - 0, - 0 - ] - }, - { - "class": "disclosure_button_control", - "attributes": [ - "expanded" - ], - "layer0.texture": "Meetio/assets/default/disclosure_expanded.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "disclosure_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.5, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "disclosure_button_control", - "settings": [ - "meetio_sidebar_disclosure", - "!meetio_arrow_folders" - ], - "content_margin": [ - 8, - 8 - ], - "layer0.opacity": 1 - }, - { - "class": "icon_folder", - "layer0.texture": "Meetio/assets/default/folder_closed.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "layer0.texture": "Meetio/assets/default/folder_open.png", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder", - "layer0.texture": "Meetio/assets/default/arrow_folder_closed.png", - "content_margin": [ - 12, - 12 - ], - "settings": [ - "meetio_arrow_folders" - ] - }, - { - "class": "icon_folder", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "layer0.texture": "Meetio/assets/default/arrow_folder_open.png", - "content_margin": [ - 12, - 12 - ], - "settings": [ - "meetio_arrow_folders" - ] - }, - { - "class": "icon_folder_loading", - "layer0.texture": { - "keyframes": [ - "Meetio/assets/default/spinner11.png", - "Meetio/assets/default/spinner10.png", - "Meetio/assets/default/spinner9.png", - "Meetio/assets/default/spinner8.png", - "Meetio/assets/default/spinner7.png", - "Meetio/assets/default/spinner6.png", - "Meetio/assets/default/spinner5.png", - "Meetio/assets/default/spinner4.png", - "Meetio/assets/default/spinner3.png", - "Meetio/assets/default/spinner2.png", - "Meetio/assets/default/spinner1.png", - "Meetio/assets/default/spinner.png" - ], - "loop": true, - "frame_time": 0.08 - }, - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_folder_dup", - "layer0.texture": "Meetio/assets/default/folder_dup.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "icon_file_type", - "layer0.opacity": 1, - "content_margin": [ - 9, - 9 - ] - }, - { - "class": "button_control", - "layer0.tint": "var(button_background_color)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "layer0.inner_margin": [ - 6, - 6 - ], - "content_margin": [ - 6, - 10, - 6, - 10 - ], - "min_size": "var(button_min_size)" - }, - { - "class": "button_control", - "attributes": [ - "hover" - ], - "layer0.tint": "var(button_background_color_hover)", - "layer0.opacity": 0.05 - }, - { - "class": "button_control", - "attributes": [ - "pressed" - ], - "layer0.opacity": { - "target": 0.1, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_button_group", - "spacing": 8 - }, - { - "class": "icon_button_control", - "layer0.texture": "", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 0, - "layer0.inner_margin": 0, - "content_margin": 8 - }, - { - "class": "icon_button_control", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "background", - 0 - ], - "layer0.opacity": 1 - }, - { - "class": "icon_regex", - "layer0.texture": "Meetio/assets/default/icon_regex.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_regex", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_regex", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_case", - "layer0.texture": "Meetio/assets/default/icon_case_sensitive.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_case", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_case", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_whole_word", - "layer0.texture": "Meetio/assets/default/icon_whole_word.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_whole_word", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_whole_word", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_wrap", - "layer0.texture": "Meetio/assets/default/icon_wrap.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_wrap", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_wrap", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_in_selection", - "layer0.texture": "Meetio/assets/default/icon_in_selection.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "in_selection", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_in_selection", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_highlight", - "layer0.texture": "Meetio/assets/default/icon_highlight_matches.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_highlight", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_highlight", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_preserve_case", - "layer0.texture": "Meetio/assets/default/icon_preserve_case.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_preserve_case", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_preserve_case", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_context", - "layer0.texture": "Meetio/assets/default/icon_in_context.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_context", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_context", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "icon_use_buffer", - "layer0.texture": "Meetio/assets/default/icon_use_buffer.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.5, - "speed": 5, - "interpolation": "smoothstep" - }, - "content_margin": [ - 12, - 12 - ] - }, - { - "class": "icon_use_buffer", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.9, - "speed": 5, - "interpolation": "smoothstep" - } - }, - { - "class": "icon_use_buffer", - "parents": [ - { - "class": "icon_button_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "grid_layout_control", - "border_color": "color(var(color_accent) blenda(var(color_black) 30%))", - "border_size": 2 - }, - { - "class": "label_control", - "fg": [ - "foreground", - 1 - ], - "font.bold": false - }, - { - "class": "label_control", - "parents": [ - { - "class": "button_control" - } - ], - "color": [ - "foreground", - 1 - ], - "font.bold": true - }, - { - "class": "label_control", - "parents": [ - { - "class": "panel_control" - } - ], - "color": [ - "foreground", - 1 - ], - "font.bold": true - }, - { - "class": "title_label_control", - "fg": [ - "foreground", - 1 - ], - "font.size": "var(font_size_huge)" - }, - { - "class": "label_control", - "parents": [ - { - "class": "button_control" - } - ] - }, - { - "class": "text_line_control", - "layer0.texture": "", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 20, - 5, - 20, - 5 - ], - "tint_index": 1, - "layer0.tint": [ - "background", - 1 - ], - "content_margin": [ - 10, - 8, - 12, - 8 - ] - }, - { - "class": "text_line_control", - "platforms": [ - "osx", - "linux" - ], - "parents": [ - { - "class": "overlay_control" - } - ], - "content_margin": [ - 52, - 10, - 10, - 10 - ], - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer2.inner_margin": [ - 52, - 48, - 0, - 0 - ], - "layer2.draw_center": false, - "layer2.texture": "Meetio/assets/default/icon_search.png", - "layer2.tint": "var(color_accent)", - "layer2.opacity": 1, - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "platforms": [ - "osx", - "linux" - ], - "parents": [ - { - "class": "switch_project_window" - } - ], - "content_margin": [ - 52, - 10, - 10, - 10 - ], - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "text_line_control", - "parents": [ - { - "class": "switch_project_window" - } - ], - "layer2.inner_margin": [ - 52, - 48, - 0, - 0 - ], - "layer2.draw_center": false, - "layer2.texture": "Meetio/assets/default/icon_search.png", - "layer2.tint": "var(color_accent)", - "layer2.opacity": 1, - "settings": [ - "meetio_input_search_icon" - ] - }, - { - "class": "dropdown_button_control", - "content_margin": [ - 12, - 12 - ], - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 0, - 0 - ] - }, - { - "class": "dropdown_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "close_button", - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": [ - 0, - 0 - ], - "content_margin": [ - 8, - 7 - ] - }, - { - "class": "close_button", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "hover" - ] - } - ], - "layer0.opacity": 1 - }, - { - "class": "close_button", - "attributes": [ - "dirty" - ], - "layer0.texture": "Meetio/assets/default/dirty_icon.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "close_button", - "attributes": [ - "hover", - "dirty" - ], - "layer0.texture": "Meetio/assets/default/dirty_icon.png", - "layer0.tint": "var(color_accent)" - }, - { - "class": "panel_control", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.inner_margin": [ - 2, - 2, - 2, - 2 - ], - "layer0.opacity": 1, - "content_margin": [ - 6, - 12, - 6, - 12 - ] - }, - { - "class": "overlay_control", - "layer0.texture": "Meetio/assets/default/overlay_bg.png", - "layer0.inner_margin": [ - 24, - 4, - 24, - 33 - ], - "layer0.opacity": 1, - "layer0.tint": [ - "background", - 1 - ], - "layer1.texture": "Meetio/assets/default/quick_panel_background.png", - "layer1.inner_margin": [ - 16, - 0, - 16, - 25 - ], - "layer1.opacity": 1, - "layer.tint": [ - "background", - 1 - ], - "content_margin": [ - 12, - 4, - 13, - 28 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer0.opacity": 1, - "layer0.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer1.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer1.opacity": 1, - "content_margin": [ - 32, - 8, - 32, - 8 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "switch_project_window" - } - ], - "layer0.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer1.inner_margin": [ - 32, - 0, - 32, - 2 - ], - "layer1.tint": [ - "background", - 1 - ], - "content_margin": [ - 32, - 8, - 32, - 8 - ] - }, - { - "class": "panel_control", - "parents": [ - { - "class": "window" - } - ] - }, - { - "class": "panel_grid_control", - "inside_spacing": 4, - "outside_hspacing": 4, - "outside_vspacing": 4 - }, - { - "class": "panel_close_button", - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.4, - "speed": 4, - "interpolation": "smoothstep" - }, - "layer1.opacity": 0, - "content_margin": [ - 0, - 0 - ] - }, - { - "class": "panel_close_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "progress_bar_control", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, - { - "class": "progress_gauge_control", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 0, - 8 - ] - }, - { - "class": "mini_quick_panel_row", - "layer0.tint": [ - "background", - 1 - ], - "layer0.inner_margin": [ - 2, - 2, - 2, - 2 - ], - "layer0.opacity": 1 - }, - { - "class": "mini_quick_panel_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 1 - ] - }, - { - "class": "quick_panel", - "row_padding": [ - 32, - 12 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel", - "row_padding": [ - 32, - 12 - ], - "layer0.tint": [ - 38, - 50, - 56, - 0 - ], - "layer0.opacity": 1 - }, - { - "class": "quick_panel_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 1 - ], - "layer1.opacity": 0 - }, - { - "class": "quick_panel_label", - "fg": "var(color_accent)", - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_label", - "fg": [ - "foreground", - 0.8 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_path_label", - "fg": [ - "foreground", - 0.4 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "background", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "quick_panel_score_label", - "fg": [ - "foreground", - 0.8 - ], - "selected_fg": [ - "background", - 1 - ] - }, - { - "class": "scroll_area_control", - "settings": [ - "overlay_scroll_bars" - ], - "overlay": true - }, - { - "class": "scroll_area_control", - "settings": [ - "!overlay_scroll_bars" - ], - "overlay": false - }, - { - "class": "scroll_area_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "content_margin": [ - 0, - 10, - 0, - 10 - ] - }, - { - "class": "scroll_bar_control", - "layer0.opacity": 1, - "content_margin": 4, - "tint_index": 0 - }, - { - "class": "scroll_bar_control", - "settings": [ - "overlay_scroll_bars" - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_bar_control", - "settings": [ - "!overlay_scroll_bars" - ], - "layer0.opacity": 1 - }, - { - "class": "scroll_track_control", - "layer0.texture": "Meetio/assets/default/scroll_bar.png", - "layer0.opacity": 1, - "layer0.inner_margin": 2, - "content_margin": [ - 4, - 4, - 3, - 4 - ] - }, - { - "class": "puck_control", - "layer0.texture": "Meetio/assets/default/scroll_puck.png", - "layer0.opacity": 1, - "layer0.inner_margin": 2, - "content_margin": [ - 0, - 12 - ] - }, - { - "class": "scroll_corner_control", - "layer0.opacity": 1, - "tint_index": 0 - }, - { - "class": "scroll_track_control", - "attributes": [ - "horizontal" - ], - "layer0.texture": "Meetio/assets/default/scroll_bar_horiz.png", - "content_margin": [ - 4, - 4, - 4, - 3 - ] - }, - { - "class": "puck_control", - "attributes": [ - "horizontal" - ], - "layer0.texture": "Meetio/assets/default/scroll_puck_horiz.png", - "content_margin": [ - 12, - 0 - ] - }, - { - "class": "scroll_bar_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_corner_control", - "parents": [ - { - "class": "sidebar_container" - } - ], - "layer0.opacity": 0 - }, - { - "class": "scroll_bar_control", - "parents": [ - { - "class": "overlay_control" - } - ], - "layer0.opacity": 0, - "content_margin": [ - 4, - 0, - 0, - 0 - ] - }, - { - "class": "sidebar_container", - "layer0.tint": [ - "background", - 0.92 - ], - "layer0.opacity": 1, - "content_margin": [ - 0, - 6, - 0, - 0 - ] - }, - { - "class": "sidebar_tree", - "row_padding": [ - 20, - 6 - ], - "indent": 10, - "indent_offset": 2, - "indent_top_level": false, - "dark_content": false, - "spacer_rows": true - }, - { - "class": "sidebar_tree", - "platforms": [ - "windows" - ], - "row_padding": [ - 20, - 6 - ] - }, - { - "class": "sidebar_tree", - "settings": [ - "meetio_compact_sidebar" - ], - "indent_offset": 8, - "row_padding": [ - 14, - 3 - ] - }, - { - "class": "tree_row", - "attributes": [ - "!hover" - ], - "layer0.opacity": 0 - }, - { - "class": "tree_row", - "attributes": [ - "selectable", - "hover" - ], - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": 0.1 - }, - { - "class": "tree_row", - "attributes": [ - "selected" - ], - "layer0.tint": [ - "foreground", - 0.6 - ], - "layer0.opacity": 0.1 - }, - { - "class": "sidebar_heading", - "color": [ - "foreground", - 0.4 - ], - "font.bold": true, - "font.size": "var(font_size_sm)" - }, - { - "class": "sidebar_heading", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "selected" - ] - } - ] - }, - { - "class": "sidebar_label", - "color": [ - "foreground", - 0.8 - ], - "font.size": "var(font_size_md)", - "font.bold": false, - "font.italic": false - }, - { - "class": "sidebar_label", - "settings": [ - "meetio_sidebar_font_big" - ], - "font.size": "var(font_size_lg)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "hover" - ] - } - ], - "color": [ - "foreground", - 0.8 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "selected" - ] - } - ], - "font.bold": false, - "color": [ - "foreground", - 0.9 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable" - ] - } - ], - "color": [ - "foreground", - 0.8 - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable" - ] - } - ], - "settings": [ - "bold_folder_labels" - ], - "font.bold": true - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expandable", - "selected" - ] - } - ] - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "color": "var(color_accent)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "tree_row", - "attributes": [ - "expanded" - ] - } - ], - "settings": [ - "bold_folder_labels" - ], - "font.bold": true - }, - { - "class": "sidebar_label", - "attributes": [ - "transient" - ], - "font.italic": false - }, - { - "class": "status_bar", - "layer0.tint": "var(status_bar_background_color)", - "layer0.opacity": 1, - "content_margin": [ - 10, - 4, - 0, - 4 - ] - }, - { - "class": "status_bar", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": [ - 10, - 6, - 0, - 6 - ] - }, - { - "class": "panel_button_control", - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(status_bar_label_foreground_color)", - "layer0.opacity": 1, - "content_margin": 9, - "layer0.inner_margin": 4 - }, - { - "class": "panel_button_control", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": 11, - "layer0.inner_margin": 4 - }, - { - "class": "vcs_branch_icon", - "layer0.texture": "Meetio/assets/default/icon_branch.png", - "layer0.tint": "var(status_bar_label_foreground_color)", - "layer0.opacity": 1, - "content_margin": 8, - "layer0.inner_margin": 2 - }, - { - "class": "vcs_branch_icon", - "settings": [ - "meetio_statusbar_big" - ], - "content_margin": 9, - "layer0.inner_margin": 2 - }, - { - "class": "panel_button_control", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "vcs_branch_icon", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "status_container", - "content_margin": [ - 8, - 0, - 0, - 0 - ] - }, - { - "class": "status_button", - "content_margin": [ - 10, - 0, - 10, - 0 - ], - "min_size": [ - 80, - 0 - ] - }, - { - "class": "label_control", - "parents": [ - { - "class": "status_bar" - } - ], - "font.size": "var(font_size_sm)", - "color": "var(status_bar_label_foreground_color)", - "font.bold": false - }, - { - "class": "tabset_control", - "layer0.opacity": 1, - "layer0.tint": [ - "background", - 0.92 - ], - "tint_index": 1, - "tab_overlap": 0, - "tab_width": "var(tabset_width)", - "tab_min_width": "var(tabset_min_width)", - "tab_height": "var(tabset_height)", - "mouse_wheel_switch": false - }, - { - "class": "tabset_control", - "settings": [ - "mouse_wheel_switches_tabs", - "!enable_tab_scrolling" - ], - "mouse_wheel_switch": true - }, - { - "class": "tabset_control", - "settings": [ - "meetio_tabs_autowidth" - ], - "tab_width": 0 - }, - { - "class": "tabset_control", - "settings": [ - "meetio_tabs_big" - ], - "tab_height": "var(tabset_height_large)" - }, - { - "class": "tab_control", - "layer0.tint": [ - "background", - 0 - ], - "layer0.inner_margin": [ - 24, - 8 - ], - "layer0.opacity": 1, - "tint_index": 0, - "layer1.tint": [ - "background", - 1 - ], - "layer1.inner_margin": 8, - "layer1.opacity": 0, - "layer2.inner_margin": [ - 0, - 0 - ], - "layer2.opacity": { - "target": 0, - "speed": 3, - "interpolation": "smoothstep" - }, - "content_margin": [ - 8, - 0, - 8, - 0 - ], - "max_margin_trim": 0 - }, - { - "class": "tab_control", - "settings": [ - "show_tab_close_buttons" - ], - "content_margin": [ - 8, - 8 - ] - }, - { - "class": "tab_control", - "attributes": [ - "selected" - ], - "layer1.opacity": 1 - }, - { - "class": "tab_label", - "fg": [ - "foreground", - 0.5 - ], - "font.bold": false - }, - { - "class": "tab_label", - "settings": [ - "meetio_tabs_bold" - ], - "font.bold": true - }, - { - "class": "tab_label", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected" - ] - } - ], - "fg": [ - "foreground", - 1 - ] - }, - { - "class": "tab_label", - "attributes": [ - "transient" - ], - "font.italic": true - }, - { - "class": "tab_close_button", - "content_margin": [ - 0, - 0 - ], - "layer0.texture": "Meetio/assets/default/icon_close.png", - "layer0.tint": [ - "foreground", - 0.5 - ], - "layer0.opacity": 1, - "layer0.inner_margin": 0, - "layer1.texture": "Meetio/assets/default/dirty_icon.png", - "layer1.tint": "var(color_accent)", - "layer1.inner_margin": 0 - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "content_margin": [ - 7, - 7 - ] - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected" - ] - } - ], - "layer0.opacity": 1, - "layer0.tint": "var(color_accent)" - }, - { - "class": "tab_close_button", - "settings": [ - "show_tab_close_buttons" - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 1, - "layer1.opacity": 0 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "dirty" - ] - } - ], - "layer0.opacity": 0, - "layer1.opacity": 1, - "content_margin": [ - 8, - 8 - ] - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "dirty" - ] - } - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected", - "dirty" - ] - } - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "tab_close_button", - "parents": [ - { - "class": "tab_control", - "attributes": [ - "selected", - "dirty" - ] - } - ], - "attributes": [ - "hover" - ], - "layer0.opacity": 0, - "layer1.opacity": 1 - }, - { - "class": "scroll_tabs_left_button", - "layer0.texture": "Meetio/assets/default/arrow_left.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 10, - 10 - ] - }, - { - "class": "scroll_tabs_left_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.8, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "scroll_tabs_right_button", - "layer0.texture": "Meetio/assets/default/arrow_right.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": { - "target": 0.6, - "speed": 4, - "interpolation": "smoothstep" - }, - "content_margin": [ - 10, - 10 - ] - }, - { - "class": "scroll_tabs_right_button", - "attributes": [ - "hover" - ], - "layer0.opacity": { - "target": 0.8, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "show_tabs_dropdown_button", - "content_margin": [ - 12, - 12 - ], - "layer0.texture": "Meetio/assets/default/overflow_menu.png", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "layer0.inner_margin": 0 - }, - { - "class": "show_tabs_dropdown_button", - "attributes": [ - "hover" - ], - "layer0.opacity": 0.8 - }, - { - "class": "title_bar", - "settings": [ - "meetio_titlebar" - ], - "bg": [ - "background", - 0.92 - ], - "fg": [ - "foreground", - 1 - ] - }, - { - "class": "minimap_control", - "settings": [ - "always_show_minimap_viewport" - ], - "viewport_color": "color(var(color_accent) alpha(0.2))", - "viewport_opacity": 0.5 - }, - { - "class": "minimap_control", - "settings": [ - "!always_show_minimap_viewport" - ], - "viewport_opacity": { - "target": 0, - "speed": 4, - "interpolation": "smoothstep" - } - }, - { - "class": "minimap_control", - "attributes": [ - "hover" - ], - "settings": [ - "!always_show_minimap_viewport" - ], - "viewport_opacity": { - "target": 0.4, - "speed": 20, - "interpolation": "smoothstep" - } - }, - { - "class": "tool_tip_control", - "layer0.tint": "var(tooltip_background_color)", - "layer0.opacity": 1, - "content_margin": [ - 12, - 8 - ] - }, - { - "class": "tool_tip_label_control", - "fg": "var(tooltip_label_foreground_color)" - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "untracked" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "modified" - ] - } - ], - "layer0.tint": "var(vsc_modified)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "staged" - ] - } - ], - "layer0.tint": "var(vsc_staged)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "added" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "vcs_status_badge", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "unmerged" - ] - } - ], - "layer0.tint": "var(vsc_unmerged)", - "layer0.opacity": 1, - "content_margin": 6 - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "ignored" - ] - } - ], - "color": "color(var(vsc_ignored)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "untracked" - ] - } - ], - "layer0.tint": "var(vsc_untracked)", - "color": "var(vsc_untracked)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "modified" - ] - } - ], - "color": "var(vsc_modified)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "staged" - ] - } - ], - "color": "var(vsc_staged)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "added" - ] - } - ], - "color": "var(vsc_untracked)" - }, - { - "class": "sidebar_label", - "parents": [ - { - "class": "file_system_entry", - "attributes": [ - "unmerged" - ] - } - ], - "color": "var(vsc_unmerged)" - } - ] -} \ No newline at end of file diff --git a/Meetio-Theme.sublime-theme b/Meetio-Theme.sublime-theme new file mode 100644 index 00000000..ba23e685 --- /dev/null +++ b/Meetio-Theme.sublime-theme @@ -0,0 +1,6 @@ +{ + "extends": "Meetio.json", + "variables": { + "color_accent": "#7dcac4" + } +} diff --git a/Meetio.sublime-theme b/Meetio.json similarity index 100% rename from Meetio.sublime-theme rename to Meetio.json index 4d81cd54..4870edcf 100644 --- a/Meetio.sublime-theme +++ b/Meetio.json @@ -38,55 +38,6 @@ ] }, "rules": [ - { - "class": "popup_control", - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1, - "content_margin": [ - 0, - 0 - ] - }, - { - "class": "auto_complete", - "row_padding": [ - 12, - 6 - ], - "layer0.tint": [ - "background", - 1 - ], - "layer0.opacity": 1 - }, - { - "class": "auto_complete_label", - "fg": [ - "foreground", - 0.5 - ], - "match_fg": "var(color_accent)", - "selected_fg": [ - "foreground", - 1 - ], - "selected_match_fg": "var(color_accent)" - }, - { - "class": "table_row", - "layer0.tint": "var(color_white)", - "layer0.opacity": 0 - }, - { - "class": "table_row", - "attributes": [ - "selected" - ], - "layer0.opacity": 0.2 - }, { "class": "button_control", "layer0.tint": "var(button_background_color)", @@ -485,6 +436,63 @@ ], "layer0.opacity": 1 }, + { + "class": "popup_control", + "layer0.tint": [ + "background", + 1 + ], + "layer0.opacity": 1, + "content_margin": [ + 0, + 0 + ] + }, + { + "class": "auto_complete", + "row_padding": [ + 12, + 6 + ], + "layer0.tint": [ + "background", + 1 + ], + "layer0.opacity": 1 + }, + { + "class": "auto_complete_label", + "fg": [ + "foreground", + 0.5 + ], + "match_fg": "var(color_accent)", + "selected_fg": [ + "foreground", + 1 + ], + "selected_match_fg": "var(color_accent)" + }, + { + "class": "table_row", + "layer0.tint": "var(color_white)", + "layer0.opacity": 0 + }, + { + "class": "table_row", + "attributes": [ + "selected" + ], + "layer0.opacity": 0.2 + }, + { + "class": "dialog", + "layer0.tint": [ + "background", + 0.94 + ], + "layer0.opacity": 1 + }, { "class": "fold_button_control", "layer0.texture": "Meetio/assets/default/arrow_right.png", @@ -519,14 +527,6 @@ 12 ] }, - { - "class": "dialog", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, { "class": "disclosure_button_control", "layer0.texture": "Meetio/assets/default/disclosure.png", @@ -679,11 +679,6 @@ 9 ] }, - { - "class": "grid_layout_control", - "border_color": "color(var(color_accent) blenda(var(color_black) 30%))", - "border_size": 2 - }, { "class": "text_line_control", "layer0.texture": "", @@ -811,6 +806,11 @@ ], "layer0.opacity": 0.8 }, + { + "class": "grid_layout_control", + "border_color": "color(var(color_accent) blenda(var(color_black) 30%))", + "border_size": 2 + }, { "class": "label_control", "fg": [ @@ -904,23 +904,6 @@ "layer0.texture": "Meetio/assets/default/dirty_icon.png", "layer0.tint": "var(color_accent)" }, - { - "class": "progress_bar_control", - "layer0.tint": [ - "background", - 0.94 - ], - "layer0.opacity": 1 - }, - { - "class": "progress_gauge_control", - "layer0.tint": "var(color_accent)", - "layer0.opacity": 1, - "content_margin": [ - 0, - 8 - ] - }, { "class": "panel_control", "layer0.tint": [ @@ -1080,6 +1063,23 @@ "interpolation": "smoothstep" } }, + { + "class": "progress_bar_control", + "layer0.tint": [ + "background", + 0.94 + ], + "layer0.opacity": 1 + }, + { + "class": "progress_gauge_control", + "layer0.tint": "var(color_accent)", + "layer0.opacity": 1, + "content_margin": [ + 0, + 8 + ] + }, { "class": "mini_quick_panel_row", "layer0.tint": [ @@ -1553,19 +1553,6 @@ ], "font.italic": false }, - { - "class": "tool_tip_control", - "layer0.tint": "var(tooltip_background_color)", - "layer0.opacity": 1, - "content_margin": [ - 12, - 8 - ] - }, - { - "class": "tool_tip_label_control", - "fg": "var(tooltip_label_foreground_color)" - }, { "class": "status_bar", "layer0.tint": "var(status_bar_background_color)", @@ -1668,6 +1655,20 @@ "color": "var(status_bar_label_foreground_color)", "font.bold": false }, + { + "class": "title_bar", + "settings": [ + "meetio_titlebar" + ], + "bg": [ + "background", + 0.92 + ], + "fg": [ + "foreground", + 1 + ] + }, { "class": "tabset_control", "layer0.opacity": 1, @@ -1980,19 +1981,18 @@ "layer0.opacity": 0.8 }, { - "class": "title_bar", - "settings": [ - "meetio_titlebar" - ], - "bg": [ - "background", - 0.92 - ], - "fg": [ - "foreground", - 1 + "class": "tool_tip_control", + "layer0.tint": "var(tooltip_background_color)", + "layer0.opacity": 1, + "content_margin": [ + 12, + 8 ] }, + { + "class": "tool_tip_label_control", + "fg": "var(tooltip_label_foreground_color)" + }, { "class": "minimap_control", "settings": [ diff --git a/Meetio.skins b/Meetio.skins deleted file mode 100755 index 51884878..00000000 --- a/Meetio.skins +++ /dev/null @@ -1,33 +0,0 @@ -{ "Meetio": - { - "Preferences": - { - "theme": "Meetio.sublime-theme", - "color_scheme": "Packages/Meetio/schemes/Meetio.sublime-color-scheme" - } - }, - "Meetio-Darker": - { - "Preferences": - { - "theme": "Meetio-Darker.sublime-theme", - "color_scheme": "Packages/Meetio/schemes/Meetio-Darker.sublime-color-scheme" - } - }, - "Meetio-Lighter": - { - "Preferences": - { - "theme": "Meetio-Lighter.sublime-theme", - "color_scheme": "Packages/Meetio/schemes/Meetio-Lighter.sublime-color-scheme" - } - }, - "Meetio-Palenight": - { - "Preferences": - { - "theme": "Meetio-Palenight.sublime-theme", - "color_scheme": "Packages/Meetio/schemes/Meetio-Palenight.sublime-color-scheme" - } - } -} diff --git a/Preferences.sublime-settings b/Preferences.sublime-settings index edb833e7..9360b346 100755 --- a/Preferences.sublime-settings +++ b/Preferences.sublime-settings @@ -1,25 +1,25 @@ { // Enable auto width for tabs - "meetio_tabs_autowidth" : true, + "meetio_tabs_autowidth" : false, // Set tabs big - "meetio_tabs_big" : true, + "meetio_tabs_big" : false, // Make the tab labels bolder only in selected - "meetio_tabs_bold" : false, + "meetio_tabs_bold" : false, // Set large font in sidebar "meetio_sidebar_font_big" : false, // Set compact sidebar - "meetio_compact_sidebar" : true, + "meetio_compact_sidebar" : false, // Replace folder icons with arrows "meetio_arrow_folders" : false, // Set disclosure tree controls - "meetio_sidebar_disclosure" : true, + "meetio_sidebar_disclosure" : false, // Enable title bar (OS X 10.10+) "meetio_titlebar" : false, // Show icon search in inputs - "meetio_input_search_icon" : true, + "meetio_input_search_icon" : false, // Set status bar big "meetio_statusbar_big" : false, } diff --git a/gulp-tasks/themes.js b/gulp-tasks/themes.js index 6b47e29b..d80bd23a 100644 --- a/gulp-tasks/themes.js +++ b/gulp-tasks/themes.js @@ -19,7 +19,7 @@ function build(name, folder) { "variables": variables, "rules": merge }; - fs.writeFileSync(`${name}.sublime-theme`, JSON.stringify(theme, null, 4), (err) => { + fs.writeFileSync(`${name}.json`, JSON.stringify(theme, null, 4), (err) => { if (err) console.log(err); }); }); @@ -28,7 +28,4 @@ function build(name, folder) { export default function themes() { build("Meetio", "default"); - build("Meetio-Darker", "default"); - build("Meetio-Lighter", "default"); - build("Meetio-Palenight", "default"); } diff --git a/utils/__init__.py b/utils/__init__.py index 20d782d3..03a38585 100755 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1,3 +1 @@ -from .activation import * from .changelog import * -from .links import * diff --git a/utils/activation.py b/utils/activation.py deleted file mode 100755 index 34988b8f..00000000 --- a/utils/activation.py +++ /dev/null @@ -1,102 +0,0 @@ -# -*- coding: utf-8 -*- - -""" -Meetio Activation -""" - -import sublime -import sublime_plugin -import functools - -NO_SELECTION = -1 -PREFERENCES = 'Preferences.sublime-settings' -THEMES = [ - 'Meetio', - 'Meetio-Lighter', - 'Meetio-Darker', - 'Meetio-Palenight' -] - - -def get_color_scheme(): - return sublime.load_settings(PREFERENCES).get('color_scheme', '') - - -def set_color_scheme(path): - return sublime.load_settings(PREFERENCES).set('color_scheme', path) - - -def preview_color_scheme(path): - set_color_scheme(path) - - -def activate_color_scheme(path): - set_color_scheme(path) - commit() - - -def revert_color_scheme(path): - set_color_scheme(path) - - -def get_ui_theme(): - return sublime.load_settings(PREFERENCES).get('theme', '') - - -def set_ui_theme(path): - return sublime.load_settings(PREFERENCES).set('theme', path) - - -def preview_ui_theme(path): - set_ui_theme(path) - - -def activate_ui_theme(path): - set_ui_theme(path) - commit() - - -def revert_ui_theme(path): - set_ui_theme(path) - - -def commit(): - return sublime.save_settings(PREFERENCES) - - -class MoActivateCommand(sublime_plugin.WindowCommand): - - def display_list(self, themes): - self.themes = themes - self.initial_color_scheme = get_color_scheme() - self.initial_ui_theme = get_ui_theme() - - quick_list = [theme for theme in self.themes] - self.quick_list = quick_list - - self.window.show_quick_panel(quick_list, self.on_done, on_highlight=self.on_highlighted) - - def on_highlighted(self, index): - preview_color_scheme(self._quick_list_to_scheme(index)) - preview_ui_theme(self._quick_list_to_theme(index)) - - def on_done(self, index): - if index is NO_SELECTION: - revert_color_scheme(self.initial_color_scheme) - revert_ui_theme(self.initial_ui_theme) - return - - color_scheme = self._quick_list_to_scheme(index) - activate_color_scheme(color_scheme) - - ui_theme = self._quick_list_to_theme(index) - activate_ui_theme(ui_theme) - - def _quick_list_to_scheme(self, index): - return 'Packages/Meetio/schemes/%s.sublime-color-scheme' % self.quick_list[index] - - def _quick_list_to_theme(self, index): - return '%s.sublime-theme' % self.quick_list[index] - - def run(self): - self.display_list(THEMES) diff --git a/utils/links.py b/utils/links.py deleted file mode 100755 index 100fdb7b..00000000 --- a/utils/links.py +++ /dev/null @@ -1,17 +0,0 @@ -"""Changelog.""" -import sublime -import sublime_plugin -import webbrowser - -# Repository command. -class MoRepoCommand(sublime_plugin.WindowCommand): - def run(self): - """Open the repository in a browser tab.""" - webbrowser.open_new_tab('https://github.com/mauroreisvieira/meetio') - - -# Issues command. -class MoIssuesCommand(sublime_plugin.WindowCommand): - def run(self): - """Open the issues page in a browser tab""" - webbrowser.open_new_tab('https://github.com/mauroreisvieira/meetio/issues')