diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee17f93..bcc4d00 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,15 @@ This change log adheres to standards from [Keep a CHANGELOG].
[Semantic Versioning]: http://semver.org/
[Keep a CHANGELOG]: http://keepachangelog.com
+## [1.2.3] 2021-06-04
+
+### Fix
+* Fix an issue with the graphic resolution that showed some artifacts on windows.
+
+### Polish
+* Refine the color scheme.
+* Update the tab close icon.
+
## [1.2.2] 2021-06-03
### :bug: BugFix
diff --git a/README.md b/README.md
index 675798d..d75bf11 100644
--- a/README.md
+++ b/README.md
@@ -50,6 +50,7 @@ preferences. (or ⌘, on Mac)
"highlight_modified_tabs": true,
"caret_extra_width": 1,
"caret_style": "smooth",
+ "highlight_line": true
}
```
diff --git a/TwoDark.sublime-color-scheme b/TwoDark.sublime-color-scheme
index 9e1f2d4..70454e7 100644
--- a/TwoDark.sublime-color-scheme
+++ b/TwoDark.sublime-color-scheme
@@ -19,11 +19,12 @@
"red": "hsl(355, 65%, 65%)",
"deep_red": "hsla(5, 48%, 51%, 1)",
"electric_blue": "hsl(220, 100%, 66%)",
- "blue": "hsl(207, 82%, 66%)",
- "cyan": "hsl(187, 47%, 55%)",
+ "blue": "hsl(210, 73%, 68%)",
+ "dark_blue": "hsl(222, 29%, 30%)",
+ "cyan": "hsl(189, 39%, 59%)",
"yellow": "hsl(40, 94%, 68%)",
- "green": "hsl(95, 38%, 62%)",
- "mocha": "hsla(55, 5%, 43%)"
+ "green": "hsl(90, 34%, 63%)",
+ "mocha": "hsl(55, 5%, 43%)"
},
"globals":
{
@@ -31,21 +32,21 @@
"background": "var(darker_grey)",
"invisibles": "var(lighter_grey)",
"caret": "var(electric_blue)",
- "line_highlight": "var(dark_grey)",
+ "line_highlight": "color(var(grey) alpha(0.3))",
"selection": "var(grey)",
- "selection_border":"var(light_grey2)",
- "inactive_selection": "var(light_grey2)",
+ "selection_border": "var(grey)",
+ "inactive_selection": "var(grey)",
"misspelling": "var(red)",
"shadow": "color(var(black) alpha(0.25))",
"active_guide": "var(cyan)",
"stack_guide": "color(var(cyan) alpha(0.5))",
- "highlight": "var(cyan)",
- "find_highlight_foreground": "var(grey)",
+ "highlight": "var(yellow)",
+ "find_highlight_foreground": "var(darker_grey)",
"find_highlight": "var(yellow)",
"brackets_options": "underline",
- "brackets_foreground": "var(cyan)",
+ "brackets_foreground": "var(electric_blue)",
"bracket_contents_options": "underline",
- "bracket_contents_foreground": "var(cyan)",
+ "bracket_contents_foreground": "var(electric_blue)",
"tags_options": "stippled_underline",
"tags_foreground": "var(pink)"
},
@@ -70,23 +71,38 @@
{
"name": "Operator",
"scope": "keyword.operator",
- "foreground": "var(white)"
+ "foreground": "var(pink)"
},
{
"name": "Keyword",
- "scope": "keyword",
+ "scope": "keyword - keyword.operator, keyword.operator.word",
"foreground": "var(pink)"
},
{
"name": "Variable",
"scope": "variable",
+ "foreground": "var(white)"
+ },
+ {
+ "name": "Member Variable",
+ "scope": "variable.member",
"foreground": "var(red)"
},
{
- "name": "Functions",
- "scope": "entity.name.function, meta.require, support.function.any-method",
+ "name": "Function",
+ "scope": "entity.name.function, meta.require, support.function, support.macro",
"foreground": "var(blue)"
},
+ {
+ "name": "Function call",
+ "scope": "variable.function, variable.annotation",
+ "foreground": "var(blue)"
+ },
+ {
+ "name": "Library class/type",
+ "scope": "support.type",
+ "foreground": "var(red)"
+ },
{
"name": "Classes",
"scope": "support.class, entity.name.class, entity.name.type.class",
@@ -113,10 +129,15 @@
"foreground": "var(cyan)"
},
{
- "name": "Strings, Inherited Class",
- "scope": "string, constant.other.symbol, entity.other.inherited-class",
+ "name": "String",
+ "scope": "string",
"foreground": "var(green)"
},
+ {
+ "name": "Inherited Class",
+ "scope": "entity.other.inherited-class",
+ "foreground": "var(yellow)"
+ },
{
"name": "Integers",
"scope": "constant.numeric",
@@ -165,7 +186,7 @@
{
"name": "Headings",
"scope": "markup.heading punctuation.definition.heading, entity.name.section",
- "foreground": "var(blue)"
+ "foreground": "var(red)"
},
{
"name": "Units",
@@ -174,44 +195,61 @@
},
{
"name": "Bold",
- "scope": "markup.bold, punctuation.definition.bold",
+ "scope": "markup.bold",
+ "font_style": "bold",
"foreground": "var(orange)"
},
{
"name": "Italic",
- "scope": "markup.italic, punctuation.definition.italic",
+ "scope": "markup.italic",
+ "font_style": "italic",
"foreground": "var(pink)"
},
+ {
+ "name": "Bold/Italic",
+ "scope": "markup.italic markup.bold | markup.bold markup.italic",
+ "font_style": "bold italic",
+ },
+ {
+ "name": "Bold/Italic Punctuation",
+ "scope": "punctuation.definition.bold, punctuation.definition.italic",
+ "foreground": "var(white)"
+ },
{
"name": "Code",
"scope": "markup.raw.inline",
"foreground": "var(green)"
},
- {
- "name": "Link Text",
- "scope": "string.other.link, punctuation.definition.string.end.markdown",
- "foreground": "var(red)"
- },
{
"name": "Link Url",
"scope": "meta.link",
- "foreground": "var(orange)"
+ "foreground": "var(blue)"
+ },
+ {
+ "name": "Link Url Punctuation",
+ "scope": "meta.link punctuation.definition",
+ "foreground": "var(white)"
+ },
+ {
+ "name": "markup links",
+ "scope": "string.other.link, markup.underline.link",
+ "foreground": "var(cyan)",
+ "font_style": "underline"
},
{
"name": "Lists",
- "scope": "markup.list",
+ "scope": "markup.list.numbered.bullet | markup.list.unnumbered.bullet",
"foreground": "var(red)"
},
{
"name": "Quotes",
"scope": "markup.quote",
- "foreground": "var(orange)"
+ "foreground": "var(light_grey)"
},
{
"name": "Separator",
"scope": "meta.separator",
- "foreground": "var(white)",
- "background": "var(grey)"
+ "foreground": "var(light_grey)"
},
{
"name": "diff:Inserted",
@@ -275,7 +313,7 @@
{
"name": "Javascript Dollar",
"scope": "variable.other.dollar.only.js, variable.other.object.dollar.only.js, variable.type.dollar.only.js, support.class.dollar.only.js",
- "foreground": "var(white)"
+ "foreground": "var(blue)"
},
{
"name": "Python logical keyword",
@@ -312,11 +350,6 @@
"scope": "text.html.blade entity.name.tag.blade",
"foreground": "var(green)"
},
- {
- "name": "Laravel Blade Tag",
- "scope": "support.function, constant.other.inline-data.html",
- "foreground": "var(green)"
- },
{
"name": "Laravel Blade @",
"scope": "text.html.blade constant.other.inline-data.html",
diff --git a/TwoDark.sublime-theme b/TwoDark.sublime-theme
old mode 100644
new mode 100755
index 7e3572a..48a9383
--- a/TwoDark.sublime-theme
+++ b/TwoDark.sublime-theme
@@ -1,936 +1,941 @@
-[
-//
-// SCROLLBARS
-//
- {
- "class": "scroll_bar_control",
- "layer0.opacity": 1.0,
- "layer0.tint": [32,36,42],
- "layer0.inner_margin": [0, 5],
- "blur": false
- },
- {
- "class": "scroll_bar_control",
- "attributes": ["horizontal"],
- "layer0.opacity": 1.0,
- "layer0.inner_margin": [5, 0],
- "blur": false
- },
- {
- "class": "scroll_corner_control",
- "layer0.opacity": 1.0,
- "layer0.tint": [32,36,42],
- "layer0.inner_margin": [1, 1],
- },
- {
- "class": "puck_control",
- "layer0.texture": "Theme - TwoDark/common/normal-thumb-vertical.png",
- "layer0.opacity": 1.0,
- "layer0.inner_margin": [0, 10],
- "content_margin": [5, 20],
- "blur": false
- },
- {
- "class": "puck_control",
- "attributes": ["horizontal"],
- "layer0.texture": "Theme - TwoDark/common/normal-thumb-horizontal.png",
- "layer0.opacity": 1.0,
- "layer0.inner_margin": [10, 0],
- "content_margin": [20, 5],
- "blur": false
- },
- {
- "class": "scroll_area_control",
- "settings": ["overlay_scroll_bars"],
- "overlay": true
- },
- {
- "class": "scroll_area_control",
- "settings": ["!overlay_scroll_bars"],
- "overlay": false
- },
- {
- "class": "puck_control",
- "settings": ["overlay_scroll_bars"],
- "layer0.texture": "Theme - TwoDark/common/overlay-thumb-vertical.png",
- "layer0.inner_margin": [0, 5],
- "content_margin": [5, 20],
- "blur": true
- },
- {
- "class": "puck_control",
- "settings": ["overlay_scroll_bars"],
- "attributes": ["horizontal"],
- "layer0.texture": "Theme - TwoDark/common/overlay-thumb-horizontal.png",
- "layer0.inner_margin": [5, 0],
- "content_margin": [20, 5],
- "blur": true
- },
-//
-// TABS (REGULAR)
-//
- // Tab set
- {
- "class": "tabset_control",
- "layer0.opacity": 1.0,
- "tab_overlap": 0,
- "mouse_wheel_switch": false,
- "layer0.texture": "Theme - TwoDark/common/tabset-background.png",
- "tab_height": 32,
- },
- {
- "class": "tabset_control",
- "settings": ["mouse_wheel_switches_tabs"],
- "mouse_wheel_switch": true
- },
- // Tab element
- {
- "class": "tab_control",
- "content_margin": [8,0],
- "max_margin_trim": 0,
- "hit_test_level": 0,
- "layer0.texture": "",
- "layer0.texture": "Theme - TwoDark/common/tab-inactive.png",
- "layer0.inner_margin": [5,5],
- "layer0.opacity": 1
- },
- // Tab close state
- {
- "class": "tab_control",
- "settings": ["show_tab_close_buttons"],
- "content_margin": [12,3,7,3]
- },
- // Tab hover state
- {
- "class": "tab_control",
- "attributes": ["hover"]
- },
- // Tab active state
- {
- "class": "tab_control",
- "attributes": ["selected"],
- "layer0.opacity": 1,
- "layer0.texture": "Theme - TwoDark/common/tab-active.png",
- },
- // Tab dirty state (close button hidden)
- {
- "class": "tab_control",
- "settings": ["!show_tab_close_buttons"],
- "attributes": ["dirty"],
- },
-//
-// TAB BUTTONS
-//
+{
+ "variables": {
+ },
+ "rules": [
+ //
+ // SCROLLBARS
+ //
+ {
+ "class": "scroll_bar_control",
+ "layer0.opacity": 1.0,
+ "layer0.tint": [32,36,42],
+ "layer0.inner_margin": [0, 5],
+ "blur": false
+ },
+ {
+ "class": "scroll_bar_control",
+ "attributes": ["horizontal"],
+ "layer0.opacity": 1.0,
+ "layer0.inner_margin": [5, 0],
+ "blur": false
+ },
+ {
+ "class": "scroll_corner_control",
+ "layer0.opacity": 1.0,
+ "layer0.tint": [32,36,42],
+ "layer0.inner_margin": [1, 1],
+ },
+ {
+ "class": "puck_control",
+ "layer0.texture": "Theme - TwoDark/common/normal-thumb-vertical.png",
+ "layer0.opacity": 1.0,
+ "layer0.inner_margin": [0, 10],
+ "content_margin": [5, 20],
+ "blur": false
+ },
+ {
+ "class": "puck_control",
+ "attributes": ["horizontal"],
+ "layer0.texture": "Theme - TwoDark/common/normal-thumb-horizontal.png",
+ "layer0.opacity": 1.0,
+ "layer0.inner_margin": [10, 0],
+ "content_margin": [20, 5],
+ "blur": false
+ },
+ {
+ "class": "scroll_area_control",
+ "settings": ["overlay_scroll_bars"],
+ "overlay": true
+ },
+ {
+ "class": "scroll_area_control",
+ "settings": ["!overlay_scroll_bars"],
+ "overlay": false
+ },
+ {
+ "class": "puck_control",
+ "settings": ["overlay_scroll_bars"],
+ "layer0.texture": "Theme - TwoDark/common/overlay-thumb-vertical.png",
+ "layer0.inner_margin": [0, 5],
+ "content_margin": [5, 20],
+ "blur": true
+ },
+ {
+ "class": "puck_control",
+ "settings": ["overlay_scroll_bars"],
+ "attributes": ["horizontal"],
+ "layer0.texture": "Theme - TwoDark/common/overlay-thumb-horizontal.png",
+ "layer0.inner_margin": [5, 0],
+ "content_margin": [20, 5],
+ "blur": true
+ },
+ //
+ // TABS (REGULAR)
+ //
+ // Tab set
+ {
+ "class": "tabset_control",
+ "layer0.opacity": 1.0,
+ "tab_overlap": 0,
+ "mouse_wheel_switch": false,
+ "layer0.texture": "Theme - TwoDark/common/tabset-background.png",
+ "tab_height": 32,
+ },
+ {
+ "class": "tabset_control",
+ "settings": ["mouse_wheel_switches_tabs"],
+ "mouse_wheel_switch": true
+ },
+ // Tab element
+ {
+ "class": "tab_control",
+ "content_margin": [8,0],
+ "max_margin_trim": 0,
+ "hit_test_level": 0,
+ "layer0.texture": "",
+ "layer0.texture": "Theme - TwoDark/common/tab-inactive.png",
+ "layer0.inner_margin": [5,5],
+ "layer0.opacity": 1
+ },
+ // Tab close state
+ {
+ "class": "tab_control",
+ "settings": ["show_tab_close_buttons"],
+ "content_margin": [12,3,7,3]
+ },
+ // Tab hover state
+ {
+ "class": "tab_control",
+ "attributes": ["hover"]
+ },
+ // Tab active state
+ {
+ "class": "tab_control",
+ "attributes": ["selected"],
+ "layer0.opacity": 1,
+ "layer0.texture": "Theme - TwoDark/common/tab-active.png",
+ },
+ // Tab dirty state (close button hidden)
+ {
+ "class": "tab_control",
+ "settings": ["!show_tab_close_buttons"],
+ "attributes": ["dirty"],
+ },
+ //
+ // TAB BUTTONS
+ //
- // Tab close button
- {
- "class": "tab_close_button",
- "content_margin": [8, 8],
- "layer0.opacity": 0,
- "layer0.inner_margin": 0,
- "layer0.texture": "Theme - TwoDark/common/close.png",
- },
- {
- "class": "tab_close_button",
- "content_margin": [8, 8],
- "parents": [{"class": "tab_control", "attributes": ["hover"]}],
- "layer0.texture": "Theme - TwoDark/common/close-hover.png",
- "layer0.opacity": 1
- },
- {
- "class": "tab_close_button",
- "content_margin": [8, 8],
- "parents": [{"class": "tab_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/close.png",
- "layer0.opacity": 0
- },
- {
- "class": "tab_close_button",
- "content_margin": [8, 8],
- "parents": [{"class": "tab_control", "attributes": ["selected", "hover"]}],
- "layer0.texture": "Theme - TwoDark/common/close-selected.png",
- "layer0.opacity": 1
- },
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["selected", "hover"]}],
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/close-hover.png",
- "layer0.opacity": 0.85,
- },
- {
- "class": "tab_close_button",
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/close-hover.png",
- "layer0.opacity": 0.75,
- },
- {
- "class": "tab_close_button",
- "attributes": ["pressed"],
- "layer0.texture": "Theme - TwoDark/common/close-pressed.png",
- "layer0.opacity": 1,
- },
- // Tab highlight button
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["dirty"]}],
- "layer0.texture": "Theme - TwoDark/common/highlight.png",
- "layer0.opacity": 1,
- },
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["dirty", "selected"]}],
- "layer0.texture": "Theme - TwoDark/common/highlight.png",
- "layer0.opacity": 1,
- },
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["dirty", "hover"]}],
- "layer0.texture": "Theme - TwoDark/common/highlight.png",
- "layer0.opacity": 1,
- },
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["dirty", "selected", "hover"]}],
- "layer0.texture": "Theme - TwoDark/common/close-selected.png",
- "layer0.opacity": 1,
- },
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["dirty", "selected", "hover"]}],
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/close-hover.png",
- "layer0.opacity": 0.85,
- },
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["dirty", "hover"]}],
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/close-hover.png",
- "layer0.opacity": 1,
- },
- {
- "class": "tab_close_button",
- "parents": [{"class": "tab_control", "attributes": ["dirty", "selected", "hover"]}],
- "attributes": ["pressed"],
- "layer0.texture": "Theme - TwoDark/common/close-pressed.png",
- "layer0.opacity": 1,
- },
-//
-// TAB LABELS
-//
- {
- "class": "tab_label",
- "fade": true,
- "fg": [157, 165, 180],
- "shadow_color": [25, 25, 25],
- "shadow_offset": [0, -1],
- "font.italic": false
- },
- {
- "class": "tab_label",
- "parents": [{"class": "tab_control", "attributes": ["hover"]}],
- "fg": [200, 200, 200],
- "shadow_color": [30, 30, 30]
- },
- {
- "class": "tab_label",
- "parents": [{"class": "tab_control", "attributes": ["selected"]}],
- "fg": [230, 230, 230],
- "shadow_color": [35, 35, 35]
- },
- {
- "class": "tab_label",
- "attributes": ["transient"],
- "font.italic": true
- },
-//
-// FOLD BUTTONS
-//
+ // Tab close button
+ {
+ "class": "tab_close_button",
+ "content_margin": [8, 8],
+ "layer0.opacity": 0,
+ "layer0.inner_margin": 0,
+ "layer0.texture": "Theme - TwoDark/common/close.png",
+ },
+ {
+ "class": "tab_close_button",
+ "content_margin": [8, 8],
+ "parents": [{"class": "tab_control", "attributes": ["hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/close-hover.png",
+ "layer0.opacity": 1
+ },
+ {
+ "class": "tab_close_button",
+ "content_margin": [8, 8],
+ "parents": [{"class": "tab_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/close.png",
+ "layer0.opacity": 0
+ },
+ {
+ "class": "tab_close_button",
+ "content_margin": [8, 8],
+ "parents": [{"class": "tab_control", "attributes": ["selected", "hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/close-selected.png",
+ "layer0.opacity": 1
+ },
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["selected", "hover"]}],
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/close-hover.png",
+ "layer0.opacity": 0.85,
+ },
+ {
+ "class": "tab_close_button",
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/close-hover.png",
+ "layer0.opacity": 0.75,
+ },
+ {
+ "class": "tab_close_button",
+ "attributes": ["pressed"],
+ "layer0.texture": "Theme - TwoDark/common/close-pressed.png",
+ "layer0.opacity": 1,
+ },
+ // Tab highlight button
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["dirty"]}],
+ "layer0.texture": "Theme - TwoDark/common/highlight.png",
+ "layer0.opacity": 1,
+ },
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["dirty", "selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/highlight.png",
+ "layer0.opacity": 1,
+ },
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["dirty", "hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/highlight.png",
+ "layer0.opacity": 1,
+ },
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["dirty", "selected", "hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/close-selected.png",
+ "layer0.opacity": 1,
+ },
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["dirty", "selected", "hover"]}],
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/close-hover.png",
+ "layer0.opacity": 0.85,
+ },
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["dirty", "hover"]}],
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/close-hover.png",
+ "layer0.opacity": 1,
+ },
+ {
+ "class": "tab_close_button",
+ "parents": [{"class": "tab_control", "attributes": ["dirty", "selected", "hover"]}],
+ "attributes": ["pressed"],
+ "layer0.texture": "Theme - TwoDark/common/close-pressed.png",
+ "layer0.opacity": 1,
+ },
+ //
+ // TAB LABELS
+ //
+ {
+ "class": "tab_label",
+ "fade": true,
+ "fg": [157, 165, 180],
+ "shadow_color": [25, 25, 25],
+ "shadow_offset": [0, -1],
+ "font.italic": false
+ },
+ {
+ "class": "tab_label",
+ "parents": [{"class": "tab_control", "attributes": ["hover"]}],
+ "fg": [200, 200, 200],
+ "shadow_color": [30, 30, 30]
+ },
+ {
+ "class": "tab_label",
+ "parents": [{"class": "tab_control", "attributes": ["selected"]}],
+ "fg": [230, 230, 230],
+ "shadow_color": [35, 35, 35]
+ },
+ {
+ "class": "tab_label",
+ "attributes": ["transient"],
+ "font.italic": true
+ },
+ //
+ // FOLD BUTTONS
+ //
- {
- "class": "fold_button_control",
- "layer0.texture": "Theme - TwoDark/common/fold-closed.png",
- "layer0.opacity": 1.0,
- "layer0.inner_margin": 0,
- "content_margin": [8, 8]
- },
- {
- "class": "fold_button_control",
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/fold-closed-hover.png"
- },
- {
- "class": "fold_button_control",
- "attributes": ["expanded"],
- "layer0.texture": "Theme - TwoDark/common/fold-open.png"
- },
- {
- "class": "fold_button_control",
- "attributes": ["expanded", "hover"],
- "layer0.texture": "Theme - TwoDark/common/fold-open-hover.png"
- },
+ {
+ "class": "fold_button_control",
+ "layer0.texture": "Theme - TwoDark/common/fold-closed.png",
+ "layer0.opacity": 1.0,
+ "layer0.inner_margin": 0,
+ "content_margin": [8, 8]
+ },
+ {
+ "class": "fold_button_control",
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/fold-closed-hover.png"
+ },
+ {
+ "class": "fold_button_control",
+ "attributes": ["expanded"],
+ "layer0.texture": "Theme - TwoDark/common/fold-open.png"
+ },
+ {
+ "class": "fold_button_control",
+ "attributes": ["expanded", "hover"],
+ "layer0.texture": "Theme - TwoDark/common/fold-open-hover.png"
+ },
-//
-// EMPTY WINDOW BACKGROUND
-//
+ //
+ // EMPTY WINDOW BACKGROUND
+ //
- {
- "class": "sheet_container_control",
- "layer0.tint": [33, 37, 43],
- "layer0.opacity": 1.0
- },
-//
-// GRID LAYOUT
-//
+ {
+ "class": "sheet_container_control",
+ "layer0.tint": [33, 37, 43],
+ "layer0.opacity": 1.0
+ },
+ //
+ // GRID LAYOUT
+ //
- {
- "class": "grid_layout_control",
- "border_size": 1,
- "border_color": [24, 26, 31]
- },
+ {
+ "class": "grid_layout_control",
+ "border_size": 1,
+ "border_color": [24, 26, 31]
+ },
-//
-// MINI MAP
-//
- {
- "class": "minimap_control",
- "settings": ["!always_show_minimap_viewport"],
- "viewport_color": [255, 255, 255, 10],
- },
-//
-// LABELS
-//
+ //
+ // MINI MAP
+ //
+ {
+ "class": "minimap_control",
+ "settings": ["always_show_minimap_viewport"],
+ "viewport_color": [255, 255, 255, 10],
+ },
+ //
+ // LABELS
+ //
- // General labels
- {
- "class": "label_control",
- "color": [156, 165, 180],
- },
- // Text field labels
- {
- "class": "label_control",
- "parents": [{"class": "panel_control"}]
- },
- // Button labels
- {
- "class": "label_control",
- "parents": [{"class": "button_control"}],
- "font.bold": true,
- "color": [156, 165, 180],
- },
+ // General labels
+ {
+ "class": "label_control",
+ "color": [156, 165, 180],
+ },
+ // Text field labels
+ {
+ "class": "label_control",
+ "parents": [{"class": "panel_control"}]
+ },
+ // Button labels
+ {
+ "class": "label_control",
+ "parents": [{"class": "button_control"}],
+ "font.bold": true,
+ "color": [156, 165, 180],
+ },
-//
-// TOOLTIP
-//
+ //
+ // TOOLTIP
+ //
- // Tooltip container
- {
- "class": "tool_tip_control",
- "layer0.texture": "Theme - TwoDark/common/tooltip.png",
- "layer0.inner_margin": [1, 1],
- "layer0.opacity": 0.95,
- "content_margin": [6, 6]
- },
- // Tooltip content
- {
- "class": "tool_tip_label_control",
- "color": [255, 255, 255],
- "font.size": 12
- },
-//
-// STATUS BAR
-//
+ // Tooltip container
+ {
+ "class": "tool_tip_control",
+ "layer0.texture": "Theme - TwoDark/common/tooltip.png",
+ "layer0.inner_margin": [1, 1],
+ "layer0.opacity": 0.95,
+ "content_margin": [6, 6]
+ },
+ // Tooltip content
+ {
+ "class": "tool_tip_label_control",
+ "color": [255, 255, 255],
+ "font.size": 12
+ },
+ //
+ // STATUS BAR
+ //
- // Status bar container
- {
- "class": "status_bar",
- "layer0.texture": "Theme - TwoDark/common/status-bar-background.png",
- "layer0.opacity": 1.0,
- "layer0.inner_margin": [2, 2],
- "content_margin": [7, 7, 7, 7],
- },
- // Status bar button
- {
- "class": "status_button",
- "min_size": [65, 0],
- },
- // Status bar label
- {
- "class": "label_control",
- "parents": [{"class": "status_bar"}],
- "color": [157, 165, 180],
- "shadow_color": [25, 25, 25],
- "shadow_offset": [0, -1],
- },
- {
- "class": "sidebar_button_control",
- "layer0.texture": "Theme - Default/common/sidebar_button.png",
- "layer0.opacity": { "target": 0.4, "speed": 4.0, "interpolation": "smoothstep" },
- "layer0.tint": "var(icon_tint)",
- "content_margin": [10, 11]
- },
- {
- "class": "sidebar_button_control",
- "attributes": ["hover"],
- "layer0.opacity": { "target": 0.6, "speed": 4.0, "interpolation": "smoothstep" },
- },
-//
-// SIDEBAR
-//
+ // Status bar container
+ {
+ "class": "status_bar",
+ "layer0.texture": "Theme - TwoDark/common/status-bar-background.png",
+ "layer0.opacity": 1.0,
+ "layer0.inner_margin": [2, 2],
+ "content_margin": [7, 7, 7, 7],
+ },
+ // Status bar button
+ {
+ "class": "status_button",
+ "min_size": [65, 0],
+ },
+ // Status bar label
+ {
+ "class": "label_control",
+ "parents": [{"class": "status_bar"}],
+ "color": [157, 165, 180],
+ "shadow_color": [25, 25, 25],
+ "shadow_offset": [0, -1],
+ },
+ //
+ // SIDEBAR
+ //
+ {
+ "class": "sidebar_button_control",
+ "layer0.texture": "Theme - TwoDark/common/sidebar-button.png",
+ "layer0.opacity": { "target": 0.4, "speed": 4.0, "interpolation": "smoothstep" },
+ "layer0.tint": "var(icon_tint)",
+ "content_margin": [10, 11]
+ },
+ {
+ "class": "sidebar_button_control",
+ "attributes": ["hover"],
+ "layer0.opacity": { "target": 0.6, "speed": 4.0, "interpolation": "smoothstep" },
+ },
+ // Sidebar container
+ {
+ "class": "sidebar_container",
+ "layer0.tint": [32, 36, 42],
+ "layer0.opacity": 1,
+ "layer0.inner_margin": [1,5,2,1],
+ "content_margin": [0,4,0,0]
+ },
+ // Sidebar tree
+ {
+ "class": "sidebar_tree",
+ "row_padding": [8,3],
+ "indent": 15,
+ "indent_offset": 14,
+ "indent_top_level": false,
+ "dark_content": true
+ },
+ // Sidebar rows
+ {
+ "class": "tree_row",
+ "layer0.tint": [49, 54, 63],
+ "layer0.opacity": 0.0,
+ "layer0.inner_margin": [1, 1],
+ },
+ // Sidebar row selected
+ {
+ "class": "tree_row",
+ "attributes": ["selected"],
+ "layer0.opacity": 1.0
+ },
+ // Sidebar heading
+ {
+ "class": "sidebar_heading",
+ "color": [157, 165, 180],
+ "font.bold": true,
+ },
+ // Sidebar heading selected
+ {
+ "class": "sidebar_heading",
+ "parents": [{"class": "tree_row","attributes": ["selected"]}],
+ "shadow_offset": [0,0]
+ },
+ // Sidebar entry
+ {
+ "class": "sidebar_label",
+ "color": [157, 165, 180],
+ },
+ // Sidebar folder entry
+ {
+ "class": "sidebar_label",
+ "parents": [{"class": "tree_row","attributes": ["expandable"]}],
+ "color": [157, 165, 180],
+ },
+ {
+ "class": "sidebar_label",
+ "parents": [{"class": "tree_row","attributes": ["hover"]}],
+ "color": [192,197,206],
+ },
+ {
+ "class": "sidebar_label",
+ "parents": [{"class": "tree_row","attributes": ["expandable"]}],
+ "settings": ["bold_folder_labels"],
+ "font.bold": true
+ },
+ // Sidebar entry selected
+ {
+ "class": "sidebar_label",
+ "parents": [{"class": "tree_row","attributes": ["selected"]}],
+ "color": [215, 218, 224]
+ },
+ // Sidebar entry transient
+ {
+ "class": "sidebar_label",
+ "attributes": ["transient"],
+ "font.italic": true
+ },
+ //
+ // SIDEBAR - OPEN FILE ICONS
+ //
+ //
+ // SIDEBAR - OPEN FILE ICONS
+ //
- // Sidebar container
- {
- "class": "sidebar_container",
- "layer0.tint": [32, 36, 42],
- "layer0.opacity": 1,
- "layer0.inner_margin": [1,5,2,1],
- "content_margin": [0,4,0,0]
- },
- // Sidebar tree
- {
- "class": "sidebar_tree",
- "row_padding": [8,3],
- "indent": 15,
- "indent_offset": 14,
- "indent_top_level": false,
- "dark_content": true
- },
- // Sidebar rows
- {
- "class": "tree_row",
- "layer0.tint": [49, 54, 63],
- "layer0.opacity": 0.0,
- "layer0.inner_margin": [1, 1],
- },
- // Sidebar row selected
- {
- "class": "tree_row",
- "attributes": ["selected"],
- "layer0.opacity": 1.0
- },
- // Sidebar heading
- {
- "class": "sidebar_heading",
- "color": [157, 165, 180],
- "font.bold": true,
- },
- // Sidebar heading selected
- {
- "class": "sidebar_heading",
- "parents": [{"class": "tree_row","attributes": ["selected"]}],
- "shadow_offset": [0,0]
- },
- // Sidebar entry
- {
- "class": "sidebar_label",
- "color": [157, 165, 180],
- },
- // Sidebar folder entry
- {
- "class": "sidebar_label",
- "parents": [{"class": "tree_row","attributes": ["expandable"]}],
- "color": [157, 165, 180],
- },
- {
- "class": "sidebar_label",
- "parents": [{"class": "tree_row","attributes": ["hover"]}],
- "color": [192,197,206],
- },
- {
- "class": "sidebar_label",
- "parents": [{"class": "tree_row","attributes": ["expandable"]}],
- "settings": ["bold_folder_labels"],
- "font.bold": true
- },
- // Sidebar entry selected
- {
- "class": "sidebar_label",
- "parents": [{"class": "tree_row","attributes": ["selected"]}],
- "color": [215, 218, 224]
- },
- // Sidebar entry transient
- {
- "class": "sidebar_label",
- "attributes": ["transient"],
- "font.italic": true
- },
-//
-// SIDEBAR - OPEN FILE ICONS
-//
-//
-// SIDEBAR - OPEN FILE ICONS
-//
+ // Sidebar file close
+ {
+ "class": "close_button",
+ "layer0.texture": "Theme - TwoDark/common/panel-close.png",
+ "layer0.opacity": 0.0,
+ "layer0.inner_margin": 0,
+ "content_margin": [8, 8]
+ },
+ {
+ "class": "close_button",
+ "parents": [{"class": "tree_row", "attributes": ["hover"]}],
+ "layer0.opacity": 1.0
+ },
+ // Sidebar file dirty
+ {
+ "class": "close_button",
+ "attributes": ["dirty"],
+ "layer0.texture": "Theme - TwoDark/common/highlight.png",
+ "layer0.opacity": 1.0
+ },
+ {
+ "class": "close_button",
+ "attributes": ["dirty"],
+ "parents": [{"class": "tree_row", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/highlight.png"
+ },
+ {
+ "class": "close_button",
+ "attributes": ["dirty"],
+ "parents": [{"class": "tree_row", "attributes": ["hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/panel-close.png"
+ },
+ {
+ "class": "close_button",
+ "parents": [{"class": "tree_row", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/panel-close-selected.png"
+ },
+ // Sidebar file close hover
+ {
+ "class": "close_button",
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/panel-close-hover.png"
+ },
- // Sidebar file close
- {
- "class": "close_button",
- "layer0.texture": "Theme - TwoDark/common/close.png",
- "layer0.opacity": 0.0,
- "layer0.inner_margin": 0,
- "content_margin": [8, 8]
- },
- {
- "class": "close_button",
- "parents": [{"class": "tree_row", "attributes": ["hover"]}],
- "layer0.opacity": 1.0
- },
- // Sidebar file dirty
- {
- "class": "close_button",
- "attributes": ["dirty"],
- "layer0.texture": "Theme - TwoDark/common/highlight.png",
- "layer0.opacity": 1.0
- },
- {
- "class": "close_button",
- "attributes": ["dirty"],
- "parents": [{"class": "tree_row", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/highlight.png"
- },
- {
- "class": "close_button",
- "attributes": ["dirty"],
- "parents": [{"class": "tree_row", "attributes": ["hover"]}],
- "layer0.texture": "Theme - TwoDark/common/close.png"
- },
- {
- "class": "close_button",
- "parents": [{"class": "tree_row", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/close-selected.png"
- },
- // Sidebar file close hover
- {
- "class": "close_button",
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/close-hover.png"
- },
+ //
+ // SIDEBAR - GENERAL FILE ICONS
+ //
+ // Sidebar group closed
+ {
+ "class": "disclosure_button_control",
+ "content_margin": [8, 8],
+ "layer0.texture": "Theme - TwoDark/common/group-closed.png",
+ "layer0.opacity": 1.0,
+ "layer0.inner_margin": 0
+ },
+ {
+ "class": "disclosure_button_control",
+ "parents": [{"class": "tree_row", "attributes": ["hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/group-closed-hover.png"
+ },
+ {
+ "class": "disclosure_button_control",
+ "parents": [{"class": "tree_row", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/group-closed-hover.png"
+ },
+ // Sidebar group open
+ {
+ "class": "disclosure_button_control",
+ "attributes": ["expanded"],
+ "layer0.texture": "Theme - TwoDark/common/group-open.png"
+ },
+ {
+ "class": "disclosure_button_control",
+ "attributes": ["expanded"],
+ "parents": [{"class": "tree_row", "attributes": ["hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/group-open-hover.png"
+ },
+ {
+ "class": "disclosure_button_control",
+ "attributes": ["expanded"],
+ "parents": [{"class": "tree_row", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/group-open-hover.png"
+ },
+ // Sidebar folder closed
+ {
+ "class": "icon_folder",
+ "layer0.texture": "Theme - TwoDark/common/folder.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [8, 8]
+ },
+ {
+ "class": "icon_folder",
+ "parents": [{"class": "tree_row", "attributes": ["hover"]}],
+ "layer0.texture": "Theme - TwoDark/common/folder-selected.png"
+ },
+ {
+ "class": "icon_folder",
+ "parents": [{"class": "tree_row", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/folder-selected.png"
+ },
+ // Sidebar file icons
+ {
+ "class": "icon_file_type",
+ // layer0.texture is filled in by code with the relevant icon name
+ "layer0.opacity": 1.0,
+ "content_margin": [8, 8]
+ },
+ //
+ // STANDARD TEXT BUTTONS
+ //
-//
-// SIDEBAR - GENERAL FILE ICONS
-//
- // Sidebar group closed
- {
- "class": "disclosure_button_control",
- "content_margin": [8, 8],
- "layer0.texture": "Theme - TwoDark/common/group-closed.png",
- "layer0.opacity": 1.0,
- "layer0.inner_margin": 0
- },
- {
- "class": "disclosure_button_control",
- "parents": [{"class": "tree_row", "attributes": ["hover"]}],
- "layer0.texture": "Theme - TwoDark/common/group-closed-hover.png"
- },
- {
- "class": "disclosure_button_control",
- "parents": [{"class": "tree_row", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/group-closed-hover.png"
- },
- // Sidebar group open
- {
- "class": "disclosure_button_control",
- "attributes": ["expanded"],
- "layer0.texture": "Theme - TwoDark/common/group-open.png"
- },
- {
- "class": "disclosure_button_control",
- "attributes": ["expanded"],
- "parents": [{"class": "tree_row", "attributes": ["hover"]}],
- "layer0.texture": "Theme - TwoDark/common/group-open-hover.png"
- },
- {
- "class": "disclosure_button_control",
- "attributes": ["expanded"],
- "parents": [{"class": "tree_row", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/group-open-hover.png"
- },
- // Sidebar folder closed
- {
- "class": "icon_folder",
- "layer0.texture": "Theme - TwoDark/common/folder.png",
- "layer0.opacity": 1.0,
- "content_margin": [8, 8]
- },
- {
- "class": "icon_folder",
- "parents": [{"class": "tree_row", "attributes": ["hover"]}],
- "layer0.texture": "Theme - TwoDark/common/folder-selected.png"
- },
- {
- "class": "icon_folder",
- "parents": [{"class": "tree_row", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/folder-selected.png"
- },
- // Sidebar file icons
- {
- "class": "icon_file_type",
- // layer0.texture is filled in by code with the relevant icon name
- "layer0.opacity": 1.0,
- "content_margin": [8, 8]
- },
-//
-// STANDARD TEXT BUTTONS
-//
+ // Default button state
+ {
+ "class": "button_control",
+ "content_margin": [16,8,16,8],
+ "min_size": [64,0],
+ "layer0.texture": "Theme - TwoDark/common/btn.png",
+ "layer0.opacity": 1,
+ "layer0.inner_margin": [8,8]
+ },
+ // Hover button state
+ {
+ "class": "button_control",
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/btn-hover.png",
+ },
+ // Pressed button state
+ {
+ "class": "button_control",
+ "attributes": ["pressed"],
+ "layer0.texture": "Theme - TwoDark/common/btn-pressed.png",
+ },
+ //
+ // TEXT INPUT FIELD
+ //
- // Default button state
- {
- "class": "button_control",
- "content_margin": [16,8,16,8],
- "min_size": [64,0],
- "layer0.texture": "Theme - TwoDark/common/btn.png",
- "layer0.opacity": 1,
- "layer0.inner_margin": [8,8]
- },
- // Hover button state
- {
- "class": "button_control",
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/btn-hover.png",
- },
- // Pressed button state
- {
- "class": "button_control",
- "attributes": ["pressed"],
- "layer0.texture": "Theme - TwoDark/common/btn-pressed.png",
- },
-//
-// TEXT INPUT FIELD
-//
+ // Text input field item
+ {
+ "class": "text_line_control",
+ "layer0.texture": "Theme - TwoDark/common/text-field.png",
+ "layer0.opacity": 1.0,
+ "layer0.inner_margin": [4,4,4,4],
+ "content_margin": [5,5,5,5]
+ },
+ // Text input dropdown
+ {
+ "class": "dropdown_button_control",
+ "content_margin": [8, 8],
+ "layer0.texture": "Theme - TwoDark/common/text-field-list.png",
+ "layer0.opacity": 1.0,
+ },
+ {
+ "class": "dropdown_button_control",
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/text-field-list-hover.png"
+ },
+ //
+ // PANEL BACKGROUNDS
+ //
- // Text input field item
- {
- "class": "text_line_control",
- "layer0.texture": "Theme - TwoDark/common/text-field.png",
- "layer0.opacity": 1.0,
- "layer0.inner_margin": [4,4,4,4],
- "content_margin": [5,5,5,5]
- },
- // Text input dropdown
- {
- "class": "dropdown_button_control",
- "content_margin": [8, 8],
- "layer0.texture": "Theme - TwoDark/common/text-field-list.png",
- "layer0.opacity": 1.0,
- },
- {
- "class": "dropdown_button_control",
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/text-field-list-hover.png"
- },
-//
-// PANEL BACKGROUNDS
-//
+ // Bottom panel background
+ {
+ "class": "panel_control",
+ "layer0.texture": "Theme - TwoDark/common/panel-background.png",
+ "layer0.inner_margin": [2, 2, 2, 2],
+ "layer0.opacity": 1.0,
+ "content_margin": [2, 3, 2, 1],
+ },
+ // Quick panel background
+ {
+ "class": "overlay_control",
+ "layer0.texture": "Theme - TwoDark/common/quick-panel-background.png",
+ "layer0.inner_margin": [12, 0, 13, 22],
+ "layer0.opacity": 1.0,
+ "layer1.texture": "Theme - TwoDark/common/quick-panel-sections.png",
+ "layer1.inner_margin": [12, 40, 13, 13],
+ "layer1.opacity": 1.0,
+ "content_margin": [12, 8, 12, 22],
+ },
+ //
+ // QUICK PANEL
+ //
- // Bottom panel background
- {
- "class": "panel_control",
- "layer0.texture": "Theme - TwoDark/common/panel-background.png",
- "layer0.inner_margin": [2, 2, 2, 2],
- "layer0.opacity": 1.0,
- "content_margin": [2, 3, 2, 1],
- },
-//
-// QUICK PANEL
-//
- // Quick panel background
- {
- "class": "overlay_control",
- "layer0.texture": "Theme - TwoDark/common/quick-panel-background.png",
- "layer0.inner_margin": [12, 0, 8, 12],
- "layer0.opacity": 1.0,
- "layer1.texture": "Theme - TwoDark/common/quick-panel-sections.png",
- "layer1.inner_margin": [12, 40, 13, 13],
- "layer1.opacity": 1.0,
- "content_margin": [12, 8, 12, 20],
- },
- {
- "class": "quick_panel",
- "row_padding": [10, 2],
- "layer0.tint": [157, 165, 180],
- "layer0.opacity": 1.0,
- "dark_content": true,
- },
- {
- "class": "quick_panel_row",
- "layer0.texture": "Theme - TwoDark/common/quick-panel-row.png",
- "layer0.inner_margin": [2, 2, 2, 2],
- "layer0.opacity": 1.0
- },
- {
- "class": "quick_panel_row",
- "attributes": ["selected"],
- "layer0.texture": "Theme - TwoDark/common/quick-panel-row-selected.png"
- },
- {
- "class": "quick_panel_label",
- "fg": [157, 165, 180, 255],
- "match_fg": [42,120,204, 255],
- "selected_fg": [215, 218, 224, 255],
- "selected_match_fg": [82,139,255, 255],
- },
- {
- "class": "quick_panel_path_label",
- "fg": [111, 117, 126, 255],
- "match_fg": [220, 220, 220, 255],
- "selected_fg": [175, 175, 175, 255],
- "selected_match_fg": [220, 220, 220, 255]
- },
- {
- "class": "quick_panel_score_label",
- "fg": [156, 165, 180],
- "selected_fg": [215, 218, 224],
- },
-//
-// MINI QUICK PANEL
-//
- {
- "class": "mini_quick_panel_row",
- "layer0.texture": "Theme - TwoDark/common/quick-panel-row.png",
- "layer0.inner_margin": [2, 2, 2, 2],
- "layer0.opacity": 1.0
- },
- {
- "class": "mini_quick_panel_row",
- "attributes": ["selected"],
- "layer0.texture": "Theme - TwoDark/common/quick-panel-row-selected.png"
- },
-//
-// CODE COMPLETION DROPDOWN
-//
- {
- "class": "popup_control",
- "content_margin": [0,0],
- "layer0.tint": [40, 44, 52],
- "layer0.opacity": 1,
- "layer0.inner_margin": [3,1]
- },
- {
- "class": "auto_complete",
- "row_padding": [4,4]
- },
- {
- "class": "auto_complete_label",
- "fg": [157, 165, 180, 255], // 03
- "match_fg": [211, 214, 221, 255],
- "selected_fg": [211, 214, 221, 255],
- "selected_match_fg": [255, 255, 255, 255] // 05
- },
- {
- "class": "table_row",
- "layer0.tint": [58, 63, 75],
- "layer0.opacity": 0,
- "layer0.inner_margin": [3,1]
- },
- {
- "class": "table_row",
- "attributes": ["selected"],
- "layer0.opacity": 1
- },
-//
-// BOTTOM PANEL BUTTONS
-//
+ {
+ "class": "quick_panel",
+ "row_padding": [5, 2],
+ "layer0.tint": [157, 165, 180],
+ "layer0.opacity": 1.0,
+ "dark_content": true,
+ },
+ {
+ "class": "quick_panel_row",
+ "layer0.texture": "Theme - TwoDark/common/quick-panel-row.png",
+ "layer0.inner_margin": [2, 2, 2, 2],
+ "layer0.opacity": 1.0
+ },
+ {
+ "class": "quick_panel_row",
+ "attributes": ["selected"],
+ "layer0.texture": "Theme - TwoDark/common/quick-panel-row-selected.png"
+ },
+ {
+ "class": "quick_panel_label",
+ "fg": [157, 165, 180, 255],
+ "match_fg": [42,120,204, 255],
+ "selected_fg": [215, 218, 224, 255],
+ "selected_match_fg": [82,139,255, 255],
+ },
+ {
+ "class": "quick_panel_path_label",
+ "fg": [111, 117, 126, 255],
+ "match_fg": [220, 220, 220, 255],
+ "selected_fg": [175, 175, 175, 255],
+ "selected_match_fg": [220, 220, 220, 255]
+ },
+ {
+ "class": "quick_panel_score_label",
+ "fg": [156, 165, 180],
+ "selected_fg": [215, 218, 224],
+ },
+ //
+ // MINI QUICK PANEL
+ //
+ {
+ "class": "mini_quick_panel_row",
+ "layer0.texture": "Theme - TwoDark/common/quick-panel-row.png",
+ "layer0.inner_margin": [2, 2, 2, 2],
+ "layer0.opacity": 1.0
+ },
+ {
+ "class": "mini_quick_panel_row",
+ "attributes": ["selected"],
+ "layer0.texture": "Theme - TwoDark/common/quick-panel-row-selected.png"
+ },
+ //
+ // CODE COMPLETION DROPDOWN
+ //
- // Button group middle
- {
- "class": "icon_button_control",
- "layer0.texture": "Theme - TwoDark/common/btn-group-middle.png",
- "layer0.inner_margin": [6, 6],
- "layer0.opacity": 1.0,
- "content_margin": [12, 6]
- },
- {
- "class": "icon_button_control",
- "attributes": ["selected"],
- "layer0.texture": "Theme - TwoDark/common/btn-group-middle-on.png"
- },
- // Button group left
- {
- "class": "icon_button_control",
- "attributes": ["left"],
- "layer0.texture": "Theme - TwoDark/common/btn-group-left.png",
- "content_margin": [12, 6]
- },
- {
- "class": "icon_button_control",
- "attributes": ["left", "selected"],
- "layer0.texture": "Theme - TwoDark/common/btn-group-left-on.png"
- },
- // Button group right
- {
- "class": "icon_button_control",
- "attributes": ["right"],
- "layer0.texture": "Theme - TwoDark/common/btn-group-right.png",
- "content_margin": [12, 6]
- },
- {
- "class": "icon_button_control",
- "attributes": ["right", "selected"],
- "layer0.texture": "Theme - TwoDark/common/btn-group-right-on.png"
- },
- // Button single
- {
- "class": "icon_button_control",
- "attributes": ["left", "right"],
- "layer0.texture": "Theme - TwoDark/common/btn.png",
- "content_margin": [12, 6]
- },
- {
- "class": "icon_button_control",
- "attributes": ["left", "right", "selected"],
- "layer0.texture": "Theme - TwoDark/common/btn-on.png"
- },
- // Panel close button
- {
- "class": "panel_close_button",
- "layer0.texture": "Theme - TwoDark/common/close.png",
- "layer0.opacity": 0.85,
- "content_margin": [8, 8]
- },
- {
- "class": "panel_close_button",
- "attributes": ["hover"],
- "layer0.texture": "Theme - TwoDark/common/close-hover.png",
- "layer0.opacity": 1.0
- },
- {
- "class": "panel_close_button",
- "attributes": ["pressed"],
- "layer0.texture": "Theme - TwoDark/common/close-pressed.png"
- },
-//
-// BOTTOM PANEL ICONS - GROUP 1
-//
+ {
+ "class": "popup_control",
+ "content_margin": [0,0],
+ "layer0.tint": [40, 44, 52],
+ "layer0.opacity": 1,
+ "layer0.inner_margin": [3,1]
+ },
+ {
+ "class": "auto_complete",
+ "row_padding": [4,4]
+ },
+ {
+ "class": "auto_complete_label",
+ "fg": [157, 165, 180, 255], // 03
+ "match_fg": [211, 214, 221, 255],
+ "selected_fg": [211, 214, 221, 255],
+ "selected_match_fg": [255, 255, 255, 255] // 05
+ },
+ {
+ "class": "table_row",
+ "layer0.tint": [58, 63, 75],
+ "layer0.opacity": 0,
+ "layer0.inner_margin": [3,1]
+ },
+ {
+ "class": "table_row",
+ "attributes": ["selected"],
+ "layer0.opacity": 1
+ },
+ //
+ // BOTTOM PANEL BUTTONS
+ //
- // Regex search button
- {
- "class": "icon_regex",
- "layer0.texture": "Theme - TwoDark/common/icon-regex-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_regex",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-regex-on.png"
- },
- // Case sensitive search button
- {
- "class": "icon_case",
- "layer0.texture": "Theme - TwoDark/common/icon-case-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_case",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-case-on.png"
- },
- // Match whole word search button
- {
- "class": "icon_whole_word",
- "layer0.texture": "Theme - TwoDark/common/icon-word-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_whole_word",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-word-on.png"
- },
-//
-// BOTTOM PANEL ICONS - GROUP 1 (EXTENDED: FIND IN FILES)
-//
+ // Button group middle
+ {
+ "class": "icon_button_control",
+ "layer0.texture": "Theme - TwoDark/common/btn-group-middle.png",
+ "layer0.inner_margin": [6, 6],
+ "layer0.opacity": 1.0,
+ "content_margin": [12, 6]
+ },
+ {
+ "class": "icon_button_control",
+ "attributes": ["selected"],
+ "layer0.texture": "Theme - TwoDark/common/btn-group-middle-on.png"
+ },
+ // Button group left
+ {
+ "class": "icon_button_control",
+ "attributes": ["left"],
+ "layer0.texture": "Theme - TwoDark/common/btn-group-left.png",
+ "content_margin": [12, 6]
+ },
+ {
+ "class": "icon_button_control",
+ "attributes": ["left", "selected"],
+ "layer0.texture": "Theme - TwoDark/common/btn-group-left-on.png"
+ },
+ // Button group right
+ {
+ "class": "icon_button_control",
+ "attributes": ["right"],
+ "layer0.texture": "Theme - TwoDark/common/btn-group-right.png",
+ "content_margin": [12, 6]
+ },
+ {
+ "class": "icon_button_control",
+ "attributes": ["right", "selected"],
+ "layer0.texture": "Theme - TwoDark/common/btn-group-right-on.png"
+ },
+ // Button single
+ {
+ "class": "icon_button_control",
+ "attributes": ["left", "right"],
+ "layer0.texture": "Theme - TwoDark/common/btn.png",
+ "content_margin": [12, 6]
+ },
+ {
+ "class": "icon_button_control",
+ "attributes": ["left", "right", "selected"],
+ "layer0.texture": "Theme - TwoDark/common/btn-on.png"
+ },
+ // Panel close button
+ {
+ "class": "panel_close_button",
+ "layer0.texture": "Theme - TwoDark/common/panel-close.png",
+ "layer0.opacity": 0.85,
+ "content_margin": [8, 8]
+ },
+ {
+ "class": "panel_close_button",
+ "attributes": ["hover"],
+ "layer0.texture": "Theme - TwoDark/common/panel-close-hover.png",
+ "layer0.opacity": 1.0
+ },
+ {
+ "class": "panel_close_button",
+ "attributes": ["pressed"],
+ "layer0.texture": "Theme - TwoDark/common/panel-close-pressed.png"
+ },
+ //
+ // BOTTOM PANEL ICONS - GROUP 1
+ //
- // Show search context button
- {
- "class": "icon_context",
- "layer0.texture": "Theme - TwoDark/common/icon-context-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_context",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-context-on.png"
- },
- // Use search buffer
- {
- "class": "icon_use_buffer",
- "layer0.texture": "Theme - TwoDark/common/icon-buffer-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_use_buffer",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-buffer-on.png"
- },
-//
-// BOTTOM PANEL ICONS - GROUP 2
-//
+ // Regex search button
+ {
+ "class": "icon_regex",
+ "layer0.texture": "Theme - TwoDark/common/icon-regex-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_regex",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-regex-on.png"
+ },
+ // Case sensitive search button
+ {
+ "class": "icon_case",
+ "layer0.texture": "Theme - TwoDark/common/icon-case-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_case",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-case-on.png"
+ },
+ // Match whole word search button
+ {
+ "class": "icon_whole_word",
+ "layer0.texture": "Theme - TwoDark/common/icon-word-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_whole_word",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-word-on.png"
+ },
+ //
+ // BOTTOM PANEL ICONS - GROUP 1 (EXTENDED: FIND IN FILES)
+ //
- // Reverse search direction button
- {
- "class": "icon_reverse",
- "layer0.texture": "Theme - TwoDark/common/icon-reverse-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- // Search wrap button
- {
- "class": "icon_wrap",
- "layer0.texture": "Theme - TwoDark/common/icon-wrap-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_wrap",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-wrap-on.png"
- },
- // Search in selection button
- {
- "class": "icon_in_selection",
- "layer0.texture": "Theme - TwoDark/common/icon-selection-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_in_selection",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-selection-on.png"
- },
-//
-// BOTTOM PANEL ICONS - GROUP 3
-//
+ // Show search context button
+ {
+ "class": "icon_context",
+ "layer0.texture": "Theme - TwoDark/common/icon-context-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_context",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-context-on.png"
+ },
+ // Use search buffer
+ {
+ "class": "icon_use_buffer",
+ "layer0.texture": "Theme - TwoDark/common/icon-buffer-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_use_buffer",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-buffer-on.png"
+ },
+ //
+ // BOTTOM PANEL ICONS - GROUP 2
+ //
- // Preserve case button
- {
- "class": "icon_preserve_case",
- "layer0.texture": "Theme - TwoDark/common/icon-preserve-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_preserve_case",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-preserve-on.png"
- },
-//
-// BOTTOM PANEL ICONS - GROUP 4
-//
+ // Reverse search direction button
+ {
+ "class": "icon_reverse",
+ "layer0.texture": "Theme - TwoDark/common/icon-reverse-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ // Search wrap button
+ {
+ "class": "icon_wrap",
+ "layer0.texture": "Theme - TwoDark/common/icon-wrap-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_wrap",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-wrap-on.png"
+ },
+ // Search in selection button
+ {
+ "class": "icon_in_selection",
+ "layer0.texture": "Theme - TwoDark/common/icon-selection-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_in_selection",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-selection-on.png"
+ },
+ //
+ // BOTTOM PANEL ICONS - GROUP 3
+ //
- // Highlight results button
- {
- "class": "icon_highlight",
- "layer0.texture": "Theme - TwoDark/common/icon-highlight-off.png",
- "layer0.opacity": 1.0,
- "content_margin": [9, 9]
- },
- {
- "class": "icon_highlight",
- "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
- "layer0.texture": "Theme - TwoDark/common/icon-highlight-on.png"
- }
-]
+ // Preserve case button
+ {
+ "class": "icon_preserve_case",
+ "layer0.texture": "Theme - TwoDark/common/icon-preserve-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_preserve_case",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-preserve-on.png"
+ },
+ //
+ // BOTTOM PANEL ICONS - GROUP 4
+ //
+
+ // Highlight results button
+ {
+ "class": "icon_highlight",
+ "layer0.texture": "Theme - TwoDark/common/icon-highlight-off.png",
+ "layer0.opacity": 1.0,
+ "content_margin": [9, 9]
+ },
+ {
+ "class": "icon_highlight",
+ "parents": [{"class": "icon_button_control", "attributes": ["selected"]}],
+ "layer0.texture": "Theme - TwoDark/common/icon-highlight-on.png"
+ }
+ ]
+}
diff --git a/common/autocomplete-row-selected.png b/common/autocomplete-row-selected.png
index 9e1f5db..85b7396 100644
Binary files a/common/autocomplete-row-selected.png and b/common/autocomplete-row-selected.png differ
diff --git a/common/autocomplete-row-selected@2x.png b/common/autocomplete-row-selected@2x.png
index 454abba..08c369d 100644
Binary files a/common/autocomplete-row-selected@2x.png and b/common/autocomplete-row-selected@2x.png differ
diff --git a/common/autocomplete-row.png b/common/autocomplete-row.png
index c0bffeb..7554bf7 100644
Binary files a/common/autocomplete-row.png and b/common/autocomplete-row.png differ
diff --git a/common/autocomplete-row@2x.png b/common/autocomplete-row@2x.png
index 7a05451..1186fdc 100644
Binary files a/common/autocomplete-row@2x.png and b/common/autocomplete-row@2x.png differ
diff --git a/common/btn-group-left-on.png b/common/btn-group-left-on.png
index fe2bb41..b8c5eb8 100644
Binary files a/common/btn-group-left-on.png and b/common/btn-group-left-on.png differ
diff --git a/common/btn-group-left-on@2x.png b/common/btn-group-left-on@2x.png
index 1700205..70587a3 100644
Binary files a/common/btn-group-left-on@2x.png and b/common/btn-group-left-on@2x.png differ
diff --git a/common/btn-group-left.png b/common/btn-group-left.png
index 2f02844..7fdc1d7 100644
Binary files a/common/btn-group-left.png and b/common/btn-group-left.png differ
diff --git a/common/btn-group-left@2x.png b/common/btn-group-left@2x.png
index cd25664..b7f7b13 100644
Binary files a/common/btn-group-left@2x.png and b/common/btn-group-left@2x.png differ
diff --git a/common/btn-group-middle-on.png b/common/btn-group-middle-on.png
index f943876..5eff0de 100644
Binary files a/common/btn-group-middle-on.png and b/common/btn-group-middle-on.png differ
diff --git a/common/btn-group-middle-on@2x.png b/common/btn-group-middle-on@2x.png
index 4941840..3a23e55 100644
Binary files a/common/btn-group-middle-on@2x.png and b/common/btn-group-middle-on@2x.png differ
diff --git a/common/btn-group-middle.png b/common/btn-group-middle.png
index dc0d2b3..b0d8642 100644
Binary files a/common/btn-group-middle.png and b/common/btn-group-middle.png differ
diff --git a/common/btn-group-middle@2x.png b/common/btn-group-middle@2x.png
index e6583a3..9529fd7 100644
Binary files a/common/btn-group-middle@2x.png and b/common/btn-group-middle@2x.png differ
diff --git a/common/btn-group-right-on.png b/common/btn-group-right-on.png
index 16e796a..e9b2a22 100644
Binary files a/common/btn-group-right-on.png and b/common/btn-group-right-on.png differ
diff --git a/common/btn-group-right-on@2x.png b/common/btn-group-right-on@2x.png
index e5d0877..d4c6a72 100644
Binary files a/common/btn-group-right-on@2x.png and b/common/btn-group-right-on@2x.png differ
diff --git a/common/btn-group-right.png b/common/btn-group-right.png
index 4064a54..00df005 100644
Binary files a/common/btn-group-right.png and b/common/btn-group-right.png differ
diff --git a/common/btn-group-right@2x.png b/common/btn-group-right@2x.png
index e22b072..19c48e5 100644
Binary files a/common/btn-group-right@2x.png and b/common/btn-group-right@2x.png differ
diff --git a/common/btn-hover.png b/common/btn-hover.png
index 1c2929c..8fd3d17 100644
Binary files a/common/btn-hover.png and b/common/btn-hover.png differ
diff --git a/common/btn-hover@2x.png b/common/btn-hover@2x.png
index 0179b01..9aaeda1 100644
Binary files a/common/btn-hover@2x.png and b/common/btn-hover@2x.png differ
diff --git a/common/btn-on.png b/common/btn-on.png
index f40199b..cf4af44 100644
Binary files a/common/btn-on.png and b/common/btn-on.png differ
diff --git a/common/btn-on@2x.png b/common/btn-on@2x.png
index e4144c9..ded3bbf 100644
Binary files a/common/btn-on@2x.png and b/common/btn-on@2x.png differ
diff --git a/common/btn-pressed.png b/common/btn-pressed.png
index b833a00..310446b 100644
Binary files a/common/btn-pressed.png and b/common/btn-pressed.png differ
diff --git a/common/btn-pressed@2x.png b/common/btn-pressed@2x.png
index 246fc4c..f66130a 100644
Binary files a/common/btn-pressed@2x.png and b/common/btn-pressed@2x.png differ
diff --git a/common/btn.png b/common/btn.png
index 8e23283..547f901 100644
Binary files a/common/btn.png and b/common/btn.png differ
diff --git a/common/btn@2x.png b/common/btn@2x.png
index 2bd8179..8ac593a 100644
Binary files a/common/btn@2x.png and b/common/btn@2x.png differ
diff --git a/common/close-hover.png b/common/close-hover.png
index 8e9a6b2..f35169c 100644
Binary files a/common/close-hover.png and b/common/close-hover.png differ
diff --git a/common/close-hover@2x.png b/common/close-hover@2x.png
index 51fb850..bd182ff 100644
Binary files a/common/close-hover@2x.png and b/common/close-hover@2x.png differ
diff --git a/common/close-hover@3x.png b/common/close-hover@3x.png
index eb989fc..260f2fe 100644
Binary files a/common/close-hover@3x.png and b/common/close-hover@3x.png differ
diff --git a/common/close-pressed.png b/common/close-pressed.png
index a636914..ff9d900 100644
Binary files a/common/close-pressed.png and b/common/close-pressed.png differ
diff --git a/common/close-pressed@2x.png b/common/close-pressed@2x.png
index b070c24..2d0a9bd 100644
Binary files a/common/close-pressed@2x.png and b/common/close-pressed@2x.png differ
diff --git a/common/close-pressed@3x.png b/common/close-pressed@3x.png
index ce6574f..9bdc9a9 100644
Binary files a/common/close-pressed@3x.png and b/common/close-pressed@3x.png differ
diff --git a/common/close-selected.png b/common/close-selected.png
index 535dc0d..4ca6b79 100644
Binary files a/common/close-selected.png and b/common/close-selected.png differ
diff --git a/common/close-selected@2x.png b/common/close-selected@2x.png
index 6eb5667..af82080 100644
Binary files a/common/close-selected@2x.png and b/common/close-selected@2x.png differ
diff --git a/common/close.png b/common/close.png
index 223504f..a30b715 100644
Binary files a/common/close.png and b/common/close.png differ
diff --git a/common/close@2x.png b/common/close@2x.png
index 65670f6..c521591 100644
Binary files a/common/close@2x.png and b/common/close@2x.png differ
diff --git a/common/fold-closed-hover.png b/common/fold-closed-hover.png
index 01cd87d..723f9e2 100644
Binary files a/common/fold-closed-hover.png and b/common/fold-closed-hover.png differ
diff --git a/common/fold-closed-hover@2x.png b/common/fold-closed-hover@2x.png
index a4b8eb7..a5c0466 100644
Binary files a/common/fold-closed-hover@2x.png and b/common/fold-closed-hover@2x.png differ
diff --git a/common/fold-closed.png b/common/fold-closed.png
index d284db4..460174e 100644
Binary files a/common/fold-closed.png and b/common/fold-closed.png differ
diff --git a/common/fold-closed@2x.png b/common/fold-closed@2x.png
index dfb8c94..9f7be76 100644
Binary files a/common/fold-closed@2x.png and b/common/fold-closed@2x.png differ
diff --git a/common/fold-open-hover.png b/common/fold-open-hover.png
index 8a04d41..b9ad3d9 100644
Binary files a/common/fold-open-hover.png and b/common/fold-open-hover.png differ
diff --git a/common/fold-open-hover@2x.png b/common/fold-open-hover@2x.png
index 13c8073..1ee8fcf 100644
Binary files a/common/fold-open-hover@2x.png and b/common/fold-open-hover@2x.png differ
diff --git a/common/fold-open.png b/common/fold-open.png
index cbfad25..4c44acc 100644
Binary files a/common/fold-open.png and b/common/fold-open.png differ
diff --git a/common/fold-open@2x.png b/common/fold-open@2x.png
index 8a529f1..7db281c 100644
Binary files a/common/fold-open@2x.png and b/common/fold-open@2x.png differ
diff --git a/common/folder-selected.png b/common/folder-selected.png
index 6cb0d5b..48c5a8a 100644
Binary files a/common/folder-selected.png and b/common/folder-selected.png differ
diff --git a/common/folder-selected@2x.png b/common/folder-selected@2x.png
index 16ae1e7..60bb357 100644
Binary files a/common/folder-selected@2x.png and b/common/folder-selected@2x.png differ
diff --git a/common/folder.png b/common/folder.png
index 1b3ec15..f705f43 100644
Binary files a/common/folder.png and b/common/folder.png differ
diff --git a/common/folder@2x.png b/common/folder@2x.png
index 125c78f..a7f3c3a 100644
Binary files a/common/folder@2x.png and b/common/folder@2x.png differ
diff --git a/common/group-closed-hover.png b/common/group-closed-hover.png
index a950571..4b5798c 100644
Binary files a/common/group-closed-hover.png and b/common/group-closed-hover.png differ
diff --git a/common/group-closed-hover@2x.png b/common/group-closed-hover@2x.png
index 8715c13..5f861cb 100644
Binary files a/common/group-closed-hover@2x.png and b/common/group-closed-hover@2x.png differ
diff --git a/common/group-closed.png b/common/group-closed.png
index ec6950b..a92cd47 100644
Binary files a/common/group-closed.png and b/common/group-closed.png differ
diff --git a/common/group-closed@2x.png b/common/group-closed@2x.png
index 64affb1..0f43467 100644
Binary files a/common/group-closed@2x.png and b/common/group-closed@2x.png differ
diff --git a/common/group-open-hover.png b/common/group-open-hover.png
index 299ce7a..aa6648d 100644
Binary files a/common/group-open-hover.png and b/common/group-open-hover.png differ
diff --git a/common/group-open-hover@2x.png b/common/group-open-hover@2x.png
index 2544200..48c1ff4 100644
Binary files a/common/group-open-hover@2x.png and b/common/group-open-hover@2x.png differ
diff --git a/common/group-open.png b/common/group-open.png
index b001d2c..f6585df 100644
Binary files a/common/group-open.png and b/common/group-open.png differ
diff --git a/common/group-open@2x.png b/common/group-open@2x.png
index 6d19e75..fa300a0 100644
Binary files a/common/group-open@2x.png and b/common/group-open@2x.png differ
diff --git a/common/highlight.png b/common/highlight.png
index 7a29273..c9ad760 100644
Binary files a/common/highlight.png and b/common/highlight.png differ
diff --git a/common/highlight@2x.png b/common/highlight@2x.png
index 64ffab5..7d90d50 100644
Binary files a/common/highlight@2x.png and b/common/highlight@2x.png differ
diff --git a/common/icon-buffer-off.png b/common/icon-buffer-off.png
index 5c20d19..965aa9c 100644
Binary files a/common/icon-buffer-off.png and b/common/icon-buffer-off.png differ
diff --git a/common/icon-buffer-off@2x.png b/common/icon-buffer-off@2x.png
index a44cf23..12e48e0 100644
Binary files a/common/icon-buffer-off@2x.png and b/common/icon-buffer-off@2x.png differ
diff --git a/common/icon-buffer-on.png b/common/icon-buffer-on.png
index a496df7..0f416dc 100644
Binary files a/common/icon-buffer-on.png and b/common/icon-buffer-on.png differ
diff --git a/common/icon-buffer-on@2x.png b/common/icon-buffer-on@2x.png
index 8deaf13..f18dc7b 100644
Binary files a/common/icon-buffer-on@2x.png and b/common/icon-buffer-on@2x.png differ
diff --git a/common/icon-case-off.png b/common/icon-case-off.png
index 574558b..c49af1d 100644
Binary files a/common/icon-case-off.png and b/common/icon-case-off.png differ
diff --git a/common/icon-case-off@2x.png b/common/icon-case-off@2x.png
index e6c0c0c..44c2c29 100644
Binary files a/common/icon-case-off@2x.png and b/common/icon-case-off@2x.png differ
diff --git a/common/icon-case-on.png b/common/icon-case-on.png
index 4b6a70c..71354d5 100644
Binary files a/common/icon-case-on.png and b/common/icon-case-on.png differ
diff --git a/common/icon-case-on@2x.png b/common/icon-case-on@2x.png
index bf96cf5..eefb743 100644
Binary files a/common/icon-case-on@2x.png and b/common/icon-case-on@2x.png differ
diff --git a/common/icon-context-off.png b/common/icon-context-off.png
index 3720370..ae84226 100644
Binary files a/common/icon-context-off.png and b/common/icon-context-off.png differ
diff --git a/common/icon-context-off@2x.png b/common/icon-context-off@2x.png
index 3acde1f..d613961 100644
Binary files a/common/icon-context-off@2x.png and b/common/icon-context-off@2x.png differ
diff --git a/common/icon-context-on.png b/common/icon-context-on.png
index e381d8c..b92ea46 100644
Binary files a/common/icon-context-on.png and b/common/icon-context-on.png differ
diff --git a/common/icon-context-on@2x.png b/common/icon-context-on@2x.png
index 0aab727..2171652 100644
Binary files a/common/icon-context-on@2x.png and b/common/icon-context-on@2x.png differ
diff --git a/common/icon-highlight-off.png b/common/icon-highlight-off.png
index c4d45b7..19fb4c8 100644
Binary files a/common/icon-highlight-off.png and b/common/icon-highlight-off.png differ
diff --git a/common/icon-highlight-off@2x.png b/common/icon-highlight-off@2x.png
index 2e7a96c..7d23a04 100644
Binary files a/common/icon-highlight-off@2x.png and b/common/icon-highlight-off@2x.png differ
diff --git a/common/icon-highlight-on.png b/common/icon-highlight-on.png
index 4bb6e71..bad367d 100644
Binary files a/common/icon-highlight-on.png and b/common/icon-highlight-on.png differ
diff --git a/common/icon-highlight-on@2x.png b/common/icon-highlight-on@2x.png
index 629ed03..62883c5 100644
Binary files a/common/icon-highlight-on@2x.png and b/common/icon-highlight-on@2x.png differ
diff --git a/common/icon-preserve-off.png b/common/icon-preserve-off.png
index 34862ba..4503226 100644
Binary files a/common/icon-preserve-off.png and b/common/icon-preserve-off.png differ
diff --git a/common/icon-preserve-off@2x.png b/common/icon-preserve-off@2x.png
index eff4c8b..e319085 100644
Binary files a/common/icon-preserve-off@2x.png and b/common/icon-preserve-off@2x.png differ
diff --git a/common/icon-preserve-on.png b/common/icon-preserve-on.png
index 1e219a1..ecfd370 100644
Binary files a/common/icon-preserve-on.png and b/common/icon-preserve-on.png differ
diff --git a/common/icon-preserve-on@2x.png b/common/icon-preserve-on@2x.png
index 98441dc..1b7bac2 100644
Binary files a/common/icon-preserve-on@2x.png and b/common/icon-preserve-on@2x.png differ
diff --git a/common/icon-regex-off.png b/common/icon-regex-off.png
index fad1c15..49a7111 100644
Binary files a/common/icon-regex-off.png and b/common/icon-regex-off.png differ
diff --git a/common/icon-regex-off@2x.png b/common/icon-regex-off@2x.png
index 42393af..11648f0 100644
Binary files a/common/icon-regex-off@2x.png and b/common/icon-regex-off@2x.png differ
diff --git a/common/icon-regex-on.png b/common/icon-regex-on.png
index 39a7059..95b9f25 100644
Binary files a/common/icon-regex-on.png and b/common/icon-regex-on.png differ
diff --git a/common/icon-regex-on@2x.png b/common/icon-regex-on@2x.png
index a7afdf0..58d37e7 100644
Binary files a/common/icon-regex-on@2x.png and b/common/icon-regex-on@2x.png differ
diff --git a/common/icon-reverse-off.png b/common/icon-reverse-off.png
index 79a17f5..b9b1940 100644
Binary files a/common/icon-reverse-off.png and b/common/icon-reverse-off.png differ
diff --git a/common/icon-reverse-off@2x.png b/common/icon-reverse-off@2x.png
index 29dc88a..e82b897 100644
Binary files a/common/icon-reverse-off@2x.png and b/common/icon-reverse-off@2x.png differ
diff --git a/common/icon-reverse-on.png b/common/icon-reverse-on.png
index 114c35a..c991750 100644
Binary files a/common/icon-reverse-on.png and b/common/icon-reverse-on.png differ
diff --git a/common/icon-reverse-on@2x.png b/common/icon-reverse-on@2x.png
index 218ad7e..a992416 100644
Binary files a/common/icon-reverse-on@2x.png and b/common/icon-reverse-on@2x.png differ
diff --git a/common/icon-selection-off.png b/common/icon-selection-off.png
index 1f72f2c..ff289b1 100644
Binary files a/common/icon-selection-off.png and b/common/icon-selection-off.png differ
diff --git a/common/icon-selection-off@2x.png b/common/icon-selection-off@2x.png
index c4a2fdb..872098a 100644
Binary files a/common/icon-selection-off@2x.png and b/common/icon-selection-off@2x.png differ
diff --git a/common/icon-selection-on.png b/common/icon-selection-on.png
index be6eab9..eb7f191 100644
Binary files a/common/icon-selection-on.png and b/common/icon-selection-on.png differ
diff --git a/common/icon-selection-on@2x.png b/common/icon-selection-on@2x.png
index 1191139..dfb71d3 100644
Binary files a/common/icon-selection-on@2x.png and b/common/icon-selection-on@2x.png differ
diff --git a/common/icon-word-off.png b/common/icon-word-off.png
index 6ff23d8..3b36c3e 100644
Binary files a/common/icon-word-off.png and b/common/icon-word-off.png differ
diff --git a/common/icon-word-off@2x.png b/common/icon-word-off@2x.png
index 28fc4b2..18bbe3d 100644
Binary files a/common/icon-word-off@2x.png and b/common/icon-word-off@2x.png differ
diff --git a/common/icon-word-on.png b/common/icon-word-on.png
index 9b81a37..7153cd6 100644
Binary files a/common/icon-word-on.png and b/common/icon-word-on.png differ
diff --git a/common/icon-word-on@2x.png b/common/icon-word-on@2x.png
index f85f855..d466fa2 100644
Binary files a/common/icon-word-on@2x.png and b/common/icon-word-on@2x.png differ
diff --git a/common/icon-wrap-off.png b/common/icon-wrap-off.png
index eb82e1c..6178885 100644
Binary files a/common/icon-wrap-off.png and b/common/icon-wrap-off.png differ
diff --git a/common/icon-wrap-off@2x.png b/common/icon-wrap-off@2x.png
index ec03ea6..973fe74 100644
Binary files a/common/icon-wrap-off@2x.png and b/common/icon-wrap-off@2x.png differ
diff --git a/common/icon-wrap-on.png b/common/icon-wrap-on.png
index 88bae1f..351a4b9 100644
Binary files a/common/icon-wrap-on.png and b/common/icon-wrap-on.png differ
diff --git a/common/icon-wrap-on@2x.png b/common/icon-wrap-on@2x.png
index f99c74c..d15a9e3 100644
Binary files a/common/icon-wrap-on@2x.png and b/common/icon-wrap-on@2x.png differ
diff --git a/common/panel-background.png b/common/panel-background.png
index 51f1cd2..3cbc222 100644
Binary files a/common/panel-background.png and b/common/panel-background.png differ
diff --git a/common/panel-background@2x.png b/common/panel-background@2x.png
index 9b7991d..5d63a8f 100644
Binary files a/common/panel-background@2x.png and b/common/panel-background@2x.png differ
diff --git a/common/panel-close-hover.png b/common/panel-close-hover.png
new file mode 100644
index 0000000..d965fe7
Binary files /dev/null and b/common/panel-close-hover.png differ
diff --git a/common/panel-close-hover@2x.png b/common/panel-close-hover@2x.png
new file mode 100644
index 0000000..d12c9cf
Binary files /dev/null and b/common/panel-close-hover@2x.png differ
diff --git a/common/panel-close-hover@3x.png b/common/panel-close-hover@3x.png
new file mode 100644
index 0000000..eb989fc
Binary files /dev/null and b/common/panel-close-hover@3x.png differ
diff --git a/common/panel-close-pressed.png b/common/panel-close-pressed.png
new file mode 100644
index 0000000..ec2499c
Binary files /dev/null and b/common/panel-close-pressed.png differ
diff --git a/common/panel-close-pressed@2x.png b/common/panel-close-pressed@2x.png
new file mode 100644
index 0000000..48fe005
Binary files /dev/null and b/common/panel-close-pressed@2x.png differ
diff --git a/common/panel-close-pressed@3x.png b/common/panel-close-pressed@3x.png
new file mode 100644
index 0000000..ce6574f
Binary files /dev/null and b/common/panel-close-pressed@3x.png differ
diff --git a/common/panel-close-selected.png b/common/panel-close-selected.png
new file mode 100644
index 0000000..4ca6b79
Binary files /dev/null and b/common/panel-close-selected.png differ
diff --git a/common/panel-close-selected@2x.png b/common/panel-close-selected@2x.png
new file mode 100644
index 0000000..af82080
Binary files /dev/null and b/common/panel-close-selected@2x.png differ
diff --git a/common/panel-close-selected@3x.png b/common/panel-close-selected@3x.png
new file mode 100644
index 0000000..38fcfa5
Binary files /dev/null and b/common/panel-close-selected@3x.png differ
diff --git a/common/panel-close.png b/common/panel-close.png
new file mode 100644
index 0000000..a30b715
Binary files /dev/null and b/common/panel-close.png differ
diff --git a/common/panel-close@2x.png b/common/panel-close@2x.png
new file mode 100644
index 0000000..c521591
Binary files /dev/null and b/common/panel-close@2x.png differ
diff --git a/common/panel-close@3x.png b/common/panel-close@3x.png
new file mode 100644
index 0000000..38f4b90
Binary files /dev/null and b/common/panel-close@3x.png differ
diff --git a/common/quick-panel-background.png b/common/quick-panel-background.png
index 3fbda64..7b99fab 100644
Binary files a/common/quick-panel-background.png and b/common/quick-panel-background.png differ
diff --git a/common/quick-panel-background@2x.png b/common/quick-panel-background@2x.png
index e61186e..a571412 100644
Binary files a/common/quick-panel-background@2x.png and b/common/quick-panel-background@2x.png differ
diff --git a/common/quick-panel-row-selected.png b/common/quick-panel-row-selected.png
index c27473d..23099d2 100644
Binary files a/common/quick-panel-row-selected.png and b/common/quick-panel-row-selected.png differ
diff --git a/common/quick-panel-row-selected@2x.png b/common/quick-panel-row-selected@2x.png
index 2049c2a..31fdf5e 100644
Binary files a/common/quick-panel-row-selected@2x.png and b/common/quick-panel-row-selected@2x.png differ
diff --git a/common/quick-panel-row.png b/common/quick-panel-row.png
index 2f0d94c..ce69280 100644
Binary files a/common/quick-panel-row.png and b/common/quick-panel-row.png differ
diff --git a/common/quick-panel-row@2x.png b/common/quick-panel-row@2x.png
index b94f49e..ab8aebe 100644
Binary files a/common/quick-panel-row@2x.png and b/common/quick-panel-row@2x.png differ
diff --git a/common/quick-panel-sections.png b/common/quick-panel-sections.png
index aaeaf70..654264e 100644
Binary files a/common/quick-panel-sections.png and b/common/quick-panel-sections.png differ
diff --git a/common/quick-panel-sections@2x.png b/common/quick-panel-sections@2x.png
index d05fea1..e9a0932 100644
Binary files a/common/quick-panel-sections@2x.png and b/common/quick-panel-sections@2x.png differ
diff --git a/common/sidebar-button.png b/common/sidebar-button.png
new file mode 100644
index 0000000..7f89d73
Binary files /dev/null and b/common/sidebar-button.png differ
diff --git a/common/sidebar-button@2x.png b/common/sidebar-button@2x.png
new file mode 100644
index 0000000..710093d
Binary files /dev/null and b/common/sidebar-button@2x.png differ
diff --git a/common/sidebar-button@3x.png b/common/sidebar-button@3x.png
new file mode 100644
index 0000000..63737b6
Binary files /dev/null and b/common/sidebar-button@3x.png differ
diff --git a/common/sidebar_button.png b/common/sidebar_button.png
deleted file mode 100644
index 62d0348..0000000
Binary files a/common/sidebar_button.png and /dev/null differ
diff --git a/common/sidebar_button@2x.png b/common/sidebar_button@2x.png
deleted file mode 100644
index c3a3e34..0000000
Binary files a/common/sidebar_button@2x.png and /dev/null differ
diff --git a/common/sidebar_button@3x.png b/common/sidebar_button@3x.png
deleted file mode 100644
index ec06b94..0000000
Binary files a/common/sidebar_button@3x.png and /dev/null differ
diff --git a/common/status-bar-background.png b/common/status-bar-background.png
index caeb80d..93d172d 100644
Binary files a/common/status-bar-background.png and b/common/status-bar-background.png differ
diff --git a/common/status-bar-background@2x.png b/common/status-bar-background@2x.png
index 6c83ae7..527e426 100644
Binary files a/common/status-bar-background@2x.png and b/common/status-bar-background@2x.png differ
diff --git a/common/tab-active.png b/common/tab-active.png
index a3b75b2..bc5f085 100644
Binary files a/common/tab-active.png and b/common/tab-active.png differ
diff --git a/common/tab-active@2x.png b/common/tab-active@2x.png
index ffaf263..e40aca8 100644
Binary files a/common/tab-active@2x.png and b/common/tab-active@2x.png differ
diff --git a/common/tab-inactive.png b/common/tab-inactive.png
index 352aa48..d89a1e5 100644
Binary files a/common/tab-inactive.png and b/common/tab-inactive.png differ
diff --git a/common/tab-inactive@2x.png b/common/tab-inactive@2x.png
index d713992..6faf052 100644
Binary files a/common/tab-inactive@2x.png and b/common/tab-inactive@2x.png differ
diff --git a/common/tabset-background.png b/common/tabset-background.png
index 464a40d..900b7c7 100644
Binary files a/common/tabset-background.png and b/common/tabset-background.png differ
diff --git a/common/tabset-background@2x.png b/common/tabset-background@2x.png
index 33bfd5d..e221625 100644
Binary files a/common/tabset-background@2x.png and b/common/tabset-background@2x.png differ
diff --git a/common/text-field-list-hover.png b/common/text-field-list-hover.png
index b001d2c..f6585df 100644
Binary files a/common/text-field-list-hover.png and b/common/text-field-list-hover.png differ
diff --git a/common/text-field-list-hover@2x.png b/common/text-field-list-hover@2x.png
index 6d19e75..fa300a0 100644
Binary files a/common/text-field-list-hover@2x.png and b/common/text-field-list-hover@2x.png differ
diff --git a/common/text-field-list.png b/common/text-field-list.png
index cbfad25..4c44acc 100644
Binary files a/common/text-field-list.png and b/common/text-field-list.png differ
diff --git a/common/text-field-list@2x.png b/common/text-field-list@2x.png
index 8a529f1..7db281c 100644
Binary files a/common/text-field-list@2x.png and b/common/text-field-list@2x.png differ
diff --git a/common/text-field.png b/common/text-field.png
index 703b005..224f11b 100644
Binary files a/common/text-field.png and b/common/text-field.png differ
diff --git a/common/text-field@2x.png b/common/text-field@2x.png
index 7ac7c2a..95fdac9 100644
Binary files a/common/text-field@2x.png and b/common/text-field@2x.png differ
diff --git a/common/tooltip.png b/common/tooltip.png
index ce22c81..5bdf9e2 100644
Binary files a/common/tooltip.png and b/common/tooltip.png differ
diff --git a/common/tooltip@2x.png b/common/tooltip@2x.png
index b7ea4b0..41fc95b 100644
Binary files a/common/tooltip@2x.png and b/common/tooltip@2x.png differ
diff --git a/icons/file_type_default.png b/icons/file_type_default.png
index bd9e453..421bb83 100644
Binary files a/icons/file_type_default.png and b/icons/file_type_default.png differ
diff --git a/icons/file_type_default@2x.png b/icons/file_type_default@2x.png
index 68dcb15..8378041 100644
Binary files a/icons/file_type_default@2x.png and b/icons/file_type_default@2x.png differ
diff --git a/icons/file_type_default@3x.png b/icons/file_type_default@3x.png
deleted file mode 100644
index de395c8..0000000
Binary files a/icons/file_type_default@3x.png and /dev/null differ
diff --git a/icons/file_type_image.png b/icons/file_type_image.png
index a9b67c6..4455f83 100644
Binary files a/icons/file_type_image.png and b/icons/file_type_image.png differ
diff --git a/icons/file_type_image@2x.png b/icons/file_type_image@2x.png
index 8d64c4e..ec643c9 100644
Binary files a/icons/file_type_image@2x.png and b/icons/file_type_image@2x.png differ
diff --git a/icons/file_type_image@3x.png b/icons/file_type_image@3x.png
deleted file mode 100644
index 2b11fe7..0000000
Binary files a/icons/file_type_image@3x.png and /dev/null differ
diff --git a/icons/file_type_markdown.png b/icons/file_type_markdown.png
index aa8664b..1ede765 100644
Binary files a/icons/file_type_markdown.png and b/icons/file_type_markdown.png differ
diff --git a/icons/file_type_markdown@2x.png b/icons/file_type_markdown@2x.png
index 42ce027..59be834 100644
Binary files a/icons/file_type_markdown@2x.png and b/icons/file_type_markdown@2x.png differ
diff --git a/icons/file_type_markdown@3x.png b/icons/file_type_markdown@3x.png
deleted file mode 100644
index 2eb8a16..0000000
Binary files a/icons/file_type_markdown@3x.png and /dev/null differ
diff --git a/icons/file_type_markup.png b/icons/file_type_markup.png
index 12633a7..421bb83 100644
Binary files a/icons/file_type_markup.png and b/icons/file_type_markup.png differ
diff --git a/icons/file_type_markup@2x.png b/icons/file_type_markup@2x.png
index 4a47865..8378041 100644
Binary files a/icons/file_type_markup@2x.png and b/icons/file_type_markup@2x.png differ
diff --git a/icons/file_type_markup@3x.png b/icons/file_type_markup@3x.png
deleted file mode 100644
index de395c8..0000000
Binary files a/icons/file_type_markup@3x.png and /dev/null differ
diff --git a/icons/file_type_script.png b/icons/file_type_script.png
index c1453b5..1d5334e 100644
Binary files a/icons/file_type_script.png and b/icons/file_type_script.png differ
diff --git a/icons/file_type_script@2x.png b/icons/file_type_script@2x.png
index 3c0e480..40fc620 100644
Binary files a/icons/file_type_script@2x.png and b/icons/file_type_script@2x.png differ
diff --git a/icons/file_type_script@3x.png b/icons/file_type_script@3x.png
deleted file mode 100644
index 1d10aa0..0000000
Binary files a/icons/file_type_script@3x.png and /dev/null differ
diff --git a/icons/file_type_source.png b/icons/file_type_source.png
index 5d13ac2..e31b28b 100644
Binary files a/icons/file_type_source.png and b/icons/file_type_source.png differ
diff --git a/icons/file_type_source@2x.png b/icons/file_type_source@2x.png
index e87fc5f..813a180 100644
Binary files a/icons/file_type_source@2x.png and b/icons/file_type_source@2x.png differ
diff --git a/icons/file_type_source@3x.png b/icons/file_type_source@3x.png
deleted file mode 100644
index 8e49e60..0000000
Binary files a/icons/file_type_source@3x.png and /dev/null differ
diff --git a/icons/file_type_text.png b/icons/file_type_text.png
index bd9e453..421bb83 100644
Binary files a/icons/file_type_text.png and b/icons/file_type_text.png differ
diff --git a/icons/file_type_text@2x.png b/icons/file_type_text@2x.png
index 68dcb15..8378041 100644
Binary files a/icons/file_type_text@2x.png and b/icons/file_type_text@2x.png differ
diff --git a/icons/file_type_text@3x.png b/icons/file_type_text@3x.png
deleted file mode 100644
index de395c8..0000000
Binary files a/icons/file_type_text@3x.png and /dev/null differ
diff --git a/messages.json b/messages.json
index a281cdc..51f7414 100644
--- a/messages.json
+++ b/messages.json
@@ -5,5 +5,6 @@
"1.1.2": "messages/1.1.2.txt",
"1.2.0": "messages/1.2.0.txt",
"1.2.1": "messages/1.2.1.txt",
- "1.2.2": "messages/1.2.2.txt"
+ "1.2.2": "messages/1.2.2.txt",
+ "1.2.3": "messages/1.2.3.txt",
}
diff --git a/messages/1.2.3.txt b/messages/1.2.3.txt
new file mode 100644
index 0000000..1213f16
--- /dev/null
+++ b/messages/1.2.3.txt
@@ -0,0 +1,64 @@
+TwoDark v1.2.2 is here!
+
+This version migrate to `sublime-color-scheme` format! Head over to your
+preferences and make the following changes:
+
+ {
+ "theme": "TwoDark.sublime-theme",
+ "color_scheme": "Packages/Theme - TwoDark/TwoDark.sublime-color-scheme",
+ "draw_shadows": false,
+ "highlight_modified_tabs": true,
+ "caret_extra_width": 1,
+ "caret_style": "smooth",
+ "highlight_line": true
+ }
+
+TwoDark Changelog
+==================
+
+## [1.2.3] 2021-06-04
+
+### Fix
+* Fix an issue with the graphic resolution that showed some artifacts on windows.
+
+### Polish
+* Refine the color scheme.
+* Update the tab close icon.
+
+## [1.2.2] 2021-06-03
+
+### Fix
+* Fix laravel blade template syntax
+
+## [1.2.1] 2021-06-03
+
+### Enhancement
+* All rules are now updated to `sublime-color-scheme`.
+* Slightly lighten minimap color.
+
+### Internal
+* Update installation information.
+
+## [1.2.0] 2021-06-03
+
+### Enhancement
+
+* Convert color theme to `sublime-color-scheme`.
+* Add @3x retina icons resolution.
+
+### BugFix
+
+* Fix Sidebar icons color.
+
+## [1.1.1] 2016-12-08
+
+### Enhancement
+
+* Scrollbars background color has been darkened to match the general ui palette.
+
+## [1.1.0] 2016-12-08
+
+### Enhancement
+
+* Add Scrollbars (Whoa, magical!)
+* Support for 'Skins' plugin.
diff --git a/messages/install.txt b/messages/install.txt
index b1b973e..1dbf165 100644
--- a/messages/install.txt
+++ b/messages/install.txt
@@ -15,6 +15,7 @@ selecting: `Sublime Text` -> Preferences -> Settings - User
"highlight_modified_tabs": true,
"caret_extra_width": 1,
"caret_style": "smooth",
+ "highlight_line": true
}
Restart Sublime Text after activating the theme.