From 45b7a6c33f52bf30dd4f29c7ee3ef6bda1f8c498 Mon Sep 17 00:00:00 2001 From: Tim Stack Date: Thu, 28 Mar 2024 13:56:43 -0700 Subject: [PATCH] [misc] fix a few random issues --- src/base/color_spaces.cc | 11 + src/base/color_spaces.hh | 2 + src/internals/sql-ref.rst | 2 +- src/listview_curses.cc | 1 + src/readline_context.hh | 2 +- src/session_data.cc | 3 + src/string-extension-functions.cc | 2 +- src/styling.cc | 3 +- src/styling.hh | 2 +- src/themes/default-theme.json | 3 +- src/themes/dracula.json | 3 +- src/themes/eldar.json | 4 +- src/themes/grayscale.json | 3 +- src/themes/night-owl.json | 3 +- src/themes/solarized-dark.json | 3 +- src/themes/solarized-light.json | 61 +- src/view_curses.cc | 38 +- ...3639753916f71254e8c9cce4ebb8bfd9978d3e.out | 73 +- ...06341dd560f927512e92c7c0985ed8b25827ae.out | 1120 +++++++++-------- 19 files changed, 730 insertions(+), 609 deletions(-) diff --git a/src/base/color_spaces.cc b/src/base/color_spaces.cc index 8fc5b726..74d9fe6b 100644 --- a/src/base/color_spaces.cc +++ b/src/base/color_spaces.cc @@ -163,3 +163,14 @@ lab_color::operator!=(const lab_color& rhs) const { return !(rhs == *this); } + +bool +lab_color::sufficient_contrast(const lab_color& other) const +{ + if (std::abs(this->lc_l - other.lc_l) > 15) { + return true; + } + + return (std::signbit(this->lc_a) != std::signbit(other.lc_a) + || std::signbit(this->lc_b) != std::signbit(other.lc_b)); +} diff --git a/src/base/color_spaces.hh b/src/base/color_spaces.hh index 9e1f0a9d..22c4afca 100644 --- a/src/base/color_spaces.hh +++ b/src/base/color_spaces.hh @@ -65,6 +65,8 @@ struct lab_color { double deltaE(const lab_color& other) const; + bool sufficient_contrast(const lab_color& other) const; + lab_color& operator=(const lab_color& other) { this->lc_l = other.lc_l; diff --git a/src/internals/sql-ref.rst b/src/internals/sql-ref.rst index 9e1e7d71..868ce042 100644 --- a/src/internals/sql-ref.rst +++ b/src/internals/sql-ref.rst @@ -1226,7 +1226,7 @@ extract(*str*) Automatically Parse and extract data from a string - **PRQL Name**: text.extract + **PRQL Name**: text.discover **Parameters** * **str\*** --- The string to parse diff --git a/src/listview_curses.cc b/src/listview_curses.cc index 2932a8ae..c3f9c086 100644 --- a/src/listview_curses.cc +++ b/src/listview_curses.cc @@ -875,6 +875,7 @@ listview_curses::set_top(vis_line_t top, bool suppress_flash) this->lv_focused_overlay_selection = 0_vl; if (this->lv_selectable) { if (this->lv_selection < 0_vl) { + this->set_selection(top); } else if (this->lv_selection < top) { auto sel_diff = this->lv_selection - old_top; this->set_selection(top + sel_diff); diff --git a/src/readline_context.hh b/src/readline_context.hh index 75662926..a2a55c74 100644 --- a/src/readline_context.hh +++ b/src/readline_context.hh @@ -202,7 +202,7 @@ private: const char* rc_quote_chars; readline_highlighter_t rc_highlighter; std::vector rc_vars; - splitter_func_t rc_splitter; + splitter_func_t rc_splitter{nullptr}; }; #endif diff --git a/src/session_data.cc b/src/session_data.cc index e4250b62..e3912026 100644 --- a/src/session_data.cc +++ b/src/session_data.cc @@ -898,6 +898,7 @@ static const typed_json_path_container view_info_handlers = { void load_session() { + log_info("BEGIN load_session"); load_time_bookmarks(); scan_sessions() | [](const auto pair) { lnav_data.ld_session_load_time = pair.first.second; @@ -979,6 +980,8 @@ load_session() lnav::events::publish(lnav_data.ld_db.in(), lnav::events::session::loaded{}); + + log_info("END load_session"); } static void diff --git a/src/string-extension-functions.cc b/src/string-extension-functions.cc index 604d6922..5d6fe6b5 100644 --- a/src/string-extension-functions.cc +++ b/src/string-extension-functions.cc @@ -1011,7 +1011,7 @@ string_extension_functions(struct FuncDef** basic_funcs, help_text("extract", "Automatically Parse and extract data from a string") .sql_function() - .with_prql_path({"text", "extract"}) + .with_prql_path({"text", "discover"}) .with_parameter({"str", "The string to parse"}) .with_tags({"string"}) .with_example({ diff --git a/src/styling.cc b/src/styling.cc index 7520ec0d..f4087335 100644 --- a/src/styling.cc +++ b/src/styling.cc @@ -197,7 +197,7 @@ term_color_palette::term_color_palette(const char* name, } short -term_color_palette::match_color(const lab_color& to_match) +term_color_palette::match_color(const lab_color& to_match) const { double lowest = 1000.0; short lowest_id = -1; @@ -221,7 +221,6 @@ term_color_palette::match_color(const lab_color& to_match) } namespace styling { - Result color_unit::from_str(const string_fragment& sf) { diff --git a/src/styling.hh b/src/styling.hh index fa10eafa..b9402d74 100644 --- a/src/styling.hh +++ b/src/styling.hh @@ -54,7 +54,7 @@ struct term_color { struct term_color_palette { term_color_palette(const char* name, const string_fragment& json); - short match_color(const lab_color& to_match); + short match_color(const lab_color& to_match) const; std::vector tc_palette; }; diff --git a/src/themes/default-theme.json b/src/themes/default-theme.json index 7c1377bf..dbd6e729 100644 --- a/src/themes/default-theme.json +++ b/src/themes/default-theme.json @@ -107,7 +107,8 @@ "color": "Yellow" }, "breadcrumb": { - "color": "Teal" + "color": "Teal", + "bold": true }, "table-border": { "color": "#444" diff --git a/src/themes/dracula.json b/src/themes/dracula.json index 65316646..99997bd8 100644 --- a/src/themes/dracula.json +++ b/src/themes/dracula.json @@ -118,7 +118,8 @@ "color": "$cyan" }, "breadcrumb": { - "color": "#99a" + "color": "#99a", + "bold": true }, "table-border": { "color": "#444" diff --git a/src/themes/eldar.json b/src/themes/eldar.json index 8e29981c..baf8f448 100644 --- a/src/themes/eldar.json +++ b/src/themes/eldar.json @@ -12,6 +12,7 @@ "cyan": "#34e2e2", "green": "#8ae234", "white": "#ffffff", + "orange": "#ef8c29", "semantic_highlight_color": "semantic()" }, "styles": { @@ -115,7 +116,8 @@ "color": "$yellow" }, "breadcrumb": { - "color": "#99a" + "color": "#448", + "bold": true }, "table-border": { "color": "#444" diff --git a/src/themes/grayscale.json b/src/themes/grayscale.json index a4b338ac..b2a4f9c2 100644 --- a/src/themes/grayscale.json +++ b/src/themes/grayscale.json @@ -116,7 +116,8 @@ "color": "#444" }, "breadcrumb": { - "color": "#999" + "color": "#999", + "bold": true }, "table-border": { "color": "#444" diff --git a/src/themes/night-owl.json b/src/themes/night-owl.json index 337a4027..749d0c3b 100644 --- a/src/themes/night-owl.json +++ b/src/themes/night-owl.json @@ -115,7 +115,8 @@ "color": "$yellow" }, "breadcrumb": { - "color": "#99a" + "color": "#2d5a80", + "bold": true }, "table-border": { "color": "#444" diff --git a/src/themes/solarized-dark.json b/src/themes/solarized-dark.json index c44aa2f2..69e99f4a 100644 --- a/src/themes/solarized-dark.json +++ b/src/themes/solarized-dark.json @@ -124,7 +124,8 @@ "color": "$yellow" }, "breadcrumb": { - "color": "#99a" + "color": "#99a", + "bold": true }, "table-border": { "color": "#444" diff --git a/src/themes/solarized-light.json b/src/themes/solarized-light.json index 2af7f24d..7b88f792 100644 --- a/src/themes/solarized-light.json +++ b/src/themes/solarized-light.json @@ -10,7 +10,7 @@ "base00": "#657b83", "base0": "#839496", "base1": "#93a1a1", - "base2": "#eee8d5", + "base2": "#ededb0", "base3": "#fdf6e3", "black": "#002b36", "yellow": "#b58900", @@ -25,7 +25,6 @@ }, "styles": { "identifier": { - "background-color": "$base3", "color": "semantic()" }, "text": { @@ -52,11 +51,15 @@ "bold": true }, "cursor-line": { - "color": "$cyan", - "background-color": "$red", + "color": "$base0", + "background-color": "#fafa4a", "bold": true, "underline": true }, + "disabled-cursor-line": { + "color": "$cyan", + "background-color": "$yellow" + }, "adjusted-time": { "color": "$magenta" }, @@ -71,7 +74,7 @@ }, "popup": { "color": "$base00", - "background-color": "$base3" + "background-color": "$base2" }, "scrollbar": { "color": "$base3", @@ -103,8 +106,45 @@ "h6": { "underline": true }, - "indent-guide": { + "hr": { + "color": "#444" + }, + "hyperlink": { + "underline": true + }, + "list-glyph": { + "color": "$yellow" + }, + "breadcrumb": { + "color": "#99a", + "bold": true + }, + "table-border": { "color": "#444" + }, + "table-header": { + "bold": true + }, + "quote-border": { + "color": "#666", + "background-color": "#444" + }, + "quoted-text": { + "background-color": "#444" + }, + "footnote-border": { + "color": "$blue", + "background-color": "#444" + }, + "footnote-text": { + "color": "#eee", + "background-color": "#444" + }, + "snippet-border": { + "color": "$cyan" + }, + "indent-guide": { + "color": "$base1" } }, "syntax-styles": { @@ -158,7 +198,12 @@ "status-styles": { "title": { "color": "$base2", - "background-color": "$base0", + "background-color": "$base00", + "bold": true + }, + "disabled-title": { + "color": "$base2", + "background-color": "$base02", "bold": true }, "subtitle": { @@ -195,7 +240,7 @@ "background-color": "$base03" }, "suggestion": { - "color": "$base03" + "color": "$base1" } }, "log-level-styles": { diff --git a/src/view_curses.cc b/src/view_curses.cc index 0f2cff51..24594bce 100644 --- a/src/view_curses.cc +++ b/src/view_curses.cc @@ -244,12 +244,13 @@ view_curses::mvwattrline(WINDOW* window, auto& vc = view_colors::singleton(); auto text_role_attrs = vc.attrs_for_role(role_t::VCR_TEXT); - auto attrs = vc.attrs_for_role(base_role); + auto base_attrs = vc.attrs_for_role(base_role); wmove(window, y, x); - wattr_set(window, - attrs.ta_attrs, - vc.ensure_color_pair(attrs.ta_fg_color, attrs.ta_bg_color), - nullptr); + wattr_set( + window, + base_attrs.ta_attrs, + vc.ensure_color_pair(base_attrs.ta_fg_color, base_attrs.ta_bg_color), + nullptr); if (lr_bytes.lr_start < (int) full_line.size()) { waddnstr( window, &full_line.c_str()[lr_bytes.lr_start], lr_bytes.length()); @@ -341,6 +342,7 @@ view_curses::mvwattrline(WINDOW* window, } if (attr_range.lr_start < attr_range.lr_end) { + auto attrs = text_attrs{}; nonstd::optional graphic; nonstd::optional block_elem; @@ -427,6 +429,30 @@ view_curses::mvwattrline(WINDOW* window, #endif short cur_fg, cur_bg; pair_content(cur_pair, &cur_fg, &cur_bg); + + if (fg_color[lpc] != -1 && bg_color[lpc] == -1) { + const auto& fg_color_info + = view_colors::vc_active_palette->tc_palette[fg_color[lpc]]; + const auto& bg_color_info + = view_colors::vc_active_palette + ->tc_palette[base_attrs.ta_bg_color.value_or(0)]; + + if (!fg_color_info.xc_lab_color.sufficient_contrast( + bg_color_info.xc_lab_color)) + { + auto adjusted_color = bg_color_info.xc_lab_color; + adjusted_color.lc_l -= 40.0; + auto new_bg = view_colors::vc_active_palette->match_color( + adjusted_color); + for (int lpc2 = lpc; lpc2 < line_width_chars; lpc2++) { + if (fg_color[lpc2] == fg_color[lpc] && bg_color[lpc2] == -1) + { + bg_color[lpc2] = new_bg; + } + } + } + } + if (fg_color[lpc] == -1) { fg_color[lpc] = cur_fg; } @@ -475,7 +501,7 @@ view_colors::view_colors() : vc_dyn_pairs(0) bool view_colors::initialized = false; -static std::string COLOR_NAMES[] = { +static const std::string COLOR_NAMES[] = { "black", "red", "green", diff --git a/test/expected/test_cli.sh_0b3639753916f71254e8c9cce4ebb8bfd9978d3e.out b/test/expected/test_cli.sh_0b3639753916f71254e8c9cce4ebb8bfd9978d3e.out index cd696f20..5cee9490 100644 --- a/test/expected/test_cli.sh_0b3639753916f71254e8c9cce4ebb8bfd9978d3e.out +++ b/test/expected/test_cli.sh_0b3639753916f71254e8c9cce4ebb8bfd9978d3e.out @@ -303,7 +303,7 @@ "color": "Teal", "background-color": "", "underline": false, - "bold": false + "bold": true }, "table-border": { "color": "#444", @@ -899,7 +899,7 @@ "color": "#99a", "background-color": "", "underline": false, - "bold": false + "bold": true }, "table-border": { "color": "#444", @@ -1279,6 +1279,7 @@ "cyan": "#34e2e2", "green": "#8ae234", "magenta": "#ad7fa8", + "orange": "#ef8c29", "red": "#ef2929", "semantic_highlight_color": "semantic()", "white": "#ffffff", @@ -1454,10 +1455,10 @@ "bold": false }, "breadcrumb": { - "color": "#99a", + "color": "#448", "background-color": "", "underline": false, - "bold": false + "bold": true }, "table-border": { "color": "#444", @@ -2015,7 +2016,7 @@ "color": "#999", "background-color": "", "underline": false, - "bold": false + "bold": true }, "table-border": { "color": "#444", @@ -3129,10 +3130,10 @@ "bold": false }, "breadcrumb": { - "color": "#99a", + "color": "#2d5a80", "background-color": "", "underline": false, - "bold": false + "bold": true }, "table-border": { "color": "#444", @@ -3699,7 +3700,7 @@ "color": "#99a", "background-color": "", "underline": false, - "bold": false + "bold": true }, "table-border": { "color": "#444", @@ -4080,7 +4081,7 @@ "base02": "#073642", "base03": "#002b36", "base1": "#93a1a1", - "base2": "#eee8d5", + "base2": "#ededb0", "base3": "#fdf6e3", "black": "#002b36", "blue": "#268bd2", @@ -4096,7 +4097,7 @@ "styles": { "identifier": { "color": "semantic()", - "background-color": "$base3", + "background-color": "", "underline": false, "bold": false }, @@ -4143,14 +4144,14 @@ "bold": true }, "cursor-line": { - "color": "$cyan", - "background-color": "$red", + "color": "$base0", + "background-color": "#fafa4a", "underline": true, "bold": true }, "disabled-cursor-line": { - "color": "", - "background-color": "", + "color": "$cyan", + "background-color": "$yellow", "underline": false, "bold": false }, @@ -4186,7 +4187,7 @@ }, "popup": { "color": "$base00", - "background-color": "$base3", + "background-color": "$base2", "underline": false, "bold": false }, @@ -4245,7 +4246,7 @@ "bold": false }, "hr": { - "color": "", + "color": "#444", "background-color": "", "underline": false, "bold": false @@ -4253,23 +4254,23 @@ "hyperlink": { "color": "", "background-color": "", - "underline": false, + "underline": true, "bold": false }, "list-glyph": { - "color": "", + "color": "$yellow", "background-color": "", "underline": false, "bold": false }, "breadcrumb": { - "color": "", + "color": "#99a", "background-color": "", "underline": false, - "bold": false + "bold": true }, "table-border": { - "color": "", + "color": "#444", "background-color": "", "underline": false, "bold": false @@ -4278,40 +4279,40 @@ "color": "", "background-color": "", "underline": false, - "bold": false + "bold": true }, "quote-border": { - "color": "", - "background-color": "", + "color": "#666", + "background-color": "#444", "underline": false, "bold": false }, "quoted-text": { "color": "", - "background-color": "", + "background-color": "#444", "underline": false, "bold": false }, "footnote-border": { - "color": "", - "background-color": "", + "color": "$blue", + "background-color": "#444", "underline": false, "bold": false }, "footnote-text": { - "color": "", - "background-color": "", + "color": "#eee", + "background-color": "#444", "underline": false, "bold": false }, "snippet-border": { - "color": "", + "color": "$cyan", "background-color": "", "underline": false, "bold": false }, "indent-guide": { - "color": "#444", + "color": "$base1", "background-color": "", "underline": false, "bold": false @@ -4514,15 +4515,15 @@ }, "title": { "color": "$base2", - "background-color": "$base0", + "background-color": "$base00", "underline": false, "bold": true }, "disabled-title": { - "color": "", - "background-color": "", + "color": "$base2", + "background-color": "$base02", "underline": false, - "bold": false + "bold": true }, "subtitle": { "color": "$base2", @@ -4543,7 +4544,7 @@ "bold": false }, "suggestion": { - "color": "$base03", + "color": "$base1", "background-color": "", "underline": false, "bold": false diff --git a/test/expected/test_cli.sh_cc06341dd560f927512e92c7c0985ed8b25827ae.out b/test/expected/test_cli.sh_cc06341dd560f927512e92c7c0985ed8b25827ae.out index ecbdf779..57c2b1dc 100644 --- a/test/expected/test_cli.sh_cc06341dd560f927512e92c7c0985ed8b25827ae.out +++ b/test/expected/test_cli.sh_cc06341dd560f927512e92c7c0985ed8b25827ae.out @@ -172,48 +172,49 @@ /ui/keymap-defs/us/x5e/command -> us-keymap.json:46 /ui/movement/mode -> root-config.json:10 /ui/theme -> root-config.json:8 -/ui/theme-defs/default/highlights/colors/pattern -> default-theme.json:291 -/ui/theme-defs/default/highlights/colors/style/color -> default-theme.json:293 -/ui/theme-defs/default/highlights/ipv4/pattern -> default-theme.json:297 -/ui/theme-defs/default/highlights/ipv4/style/color -> default-theme.json:299 -/ui/theme-defs/default/highlights/xml-decl/pattern -> default-theme.json:309 -/ui/theme-defs/default/highlights/xml-decl/style/color -> default-theme.json:311 -/ui/theme-defs/default/highlights/xml/pattern -> default-theme.json:303 -/ui/theme-defs/default/highlights/xml/style/color -> default-theme.json:305 -/ui/theme-defs/default/log-level-styles/critical/color -> default-theme.json:283 -/ui/theme-defs/default/log-level-styles/error/color -> default-theme.json:280 -/ui/theme-defs/default/log-level-styles/fatal/color -> default-theme.json:286 -/ui/theme-defs/default/log-level-styles/warning/color -> default-theme.json:277 -/ui/theme-defs/default/status-styles/active/background-color -> default-theme.json:250 -/ui/theme-defs/default/status-styles/active/color -> default-theme.json:249 -/ui/theme-defs/default/status-styles/alert/background-color -> default-theme.json:246 -/ui/theme-defs/default/status-styles/alert/color -> default-theme.json:245 -/ui/theme-defs/default/status-styles/disabled-title/background-color -> default-theme.json:229 -/ui/theme-defs/default/status-styles/disabled-title/bold -> default-theme.json:230 -/ui/theme-defs/default/status-styles/disabled-title/color -> default-theme.json:228 -/ui/theme-defs/default/status-styles/hotkey/bold -> default-theme.json:272 -/ui/theme-defs/default/status-styles/hotkey/color -> default-theme.json:270 -/ui/theme-defs/default/status-styles/hotkey/underline -> default-theme.json:271 -/ui/theme-defs/default/status-styles/inactive-alert/background-color -> default-theme.json:262 -/ui/theme-defs/default/status-styles/inactive-alert/color -> default-theme.json:261 -/ui/theme-defs/default/status-styles/inactive/background-color -> default-theme.json:258 -/ui/theme-defs/default/status-styles/inactive/color -> default-theme.json:257 -/ui/theme-defs/default/status-styles/info/background-color -> default-theme.json:254 -/ui/theme-defs/default/status-styles/info/color -> default-theme.json:253 -/ui/theme-defs/default/status-styles/subtitle/background-color -> default-theme.json:234 -/ui/theme-defs/default/status-styles/subtitle/color -> default-theme.json:233 -/ui/theme-defs/default/status-styles/text/background-color -> default-theme.json:238 -/ui/theme-defs/default/status-styles/text/color -> default-theme.json:237 -/ui/theme-defs/default/status-styles/title-hotkey/background-color -> default-theme.json:266 -/ui/theme-defs/default/status-styles/title-hotkey/color -> default-theme.json:265 -/ui/theme-defs/default/status-styles/title-hotkey/underline -> default-theme.json:267 -/ui/theme-defs/default/status-styles/title/background-color -> default-theme.json:224 -/ui/theme-defs/default/status-styles/title/bold -> default-theme.json:225 -/ui/theme-defs/default/status-styles/title/color -> default-theme.json:223 -/ui/theme-defs/default/status-styles/warn/background-color -> default-theme.json:242 -/ui/theme-defs/default/status-styles/warn/color -> default-theme.json:241 +/ui/theme-defs/default/highlights/colors/pattern -> default-theme.json:292 +/ui/theme-defs/default/highlights/colors/style/color -> default-theme.json:294 +/ui/theme-defs/default/highlights/ipv4/pattern -> default-theme.json:298 +/ui/theme-defs/default/highlights/ipv4/style/color -> default-theme.json:300 +/ui/theme-defs/default/highlights/xml-decl/pattern -> default-theme.json:310 +/ui/theme-defs/default/highlights/xml-decl/style/color -> default-theme.json:312 +/ui/theme-defs/default/highlights/xml/pattern -> default-theme.json:304 +/ui/theme-defs/default/highlights/xml/style/color -> default-theme.json:306 +/ui/theme-defs/default/log-level-styles/critical/color -> default-theme.json:284 +/ui/theme-defs/default/log-level-styles/error/color -> default-theme.json:281 +/ui/theme-defs/default/log-level-styles/fatal/color -> default-theme.json:287 +/ui/theme-defs/default/log-level-styles/warning/color -> default-theme.json:278 +/ui/theme-defs/default/status-styles/active/background-color -> default-theme.json:251 +/ui/theme-defs/default/status-styles/active/color -> default-theme.json:250 +/ui/theme-defs/default/status-styles/alert/background-color -> default-theme.json:247 +/ui/theme-defs/default/status-styles/alert/color -> default-theme.json:246 +/ui/theme-defs/default/status-styles/disabled-title/background-color -> default-theme.json:230 +/ui/theme-defs/default/status-styles/disabled-title/bold -> default-theme.json:231 +/ui/theme-defs/default/status-styles/disabled-title/color -> default-theme.json:229 +/ui/theme-defs/default/status-styles/hotkey/bold -> default-theme.json:273 +/ui/theme-defs/default/status-styles/hotkey/color -> default-theme.json:271 +/ui/theme-defs/default/status-styles/hotkey/underline -> default-theme.json:272 +/ui/theme-defs/default/status-styles/inactive-alert/background-color -> default-theme.json:263 +/ui/theme-defs/default/status-styles/inactive-alert/color -> default-theme.json:262 +/ui/theme-defs/default/status-styles/inactive/background-color -> default-theme.json:259 +/ui/theme-defs/default/status-styles/inactive/color -> default-theme.json:258 +/ui/theme-defs/default/status-styles/info/background-color -> default-theme.json:255 +/ui/theme-defs/default/status-styles/info/color -> default-theme.json:254 +/ui/theme-defs/default/status-styles/subtitle/background-color -> default-theme.json:235 +/ui/theme-defs/default/status-styles/subtitle/color -> default-theme.json:234 +/ui/theme-defs/default/status-styles/text/background-color -> default-theme.json:239 +/ui/theme-defs/default/status-styles/text/color -> default-theme.json:238 +/ui/theme-defs/default/status-styles/title-hotkey/background-color -> default-theme.json:267 +/ui/theme-defs/default/status-styles/title-hotkey/color -> default-theme.json:266 +/ui/theme-defs/default/status-styles/title-hotkey/underline -> default-theme.json:268 +/ui/theme-defs/default/status-styles/title/background-color -> default-theme.json:225 +/ui/theme-defs/default/status-styles/title/bold -> default-theme.json:226 +/ui/theme-defs/default/status-styles/title/color -> default-theme.json:224 +/ui/theme-defs/default/status-styles/warn/background-color -> default-theme.json:243 +/ui/theme-defs/default/status-styles/warn/color -> default-theme.json:242 /ui/theme-defs/default/styles/adjusted-time/color -> default-theme.json:52 /ui/theme-defs/default/styles/alt-text/background-color -> default-theme.json:19 +/ui/theme-defs/default/styles/breadcrumb/bold -> default-theme.json:111 /ui/theme-defs/default/styles/breadcrumb/color -> default-theme.json:110 /ui/theme-defs/default/styles/cursor-line/background-color -> default-theme.json:43 /ui/theme-defs/default/styles/cursor-line/bold -> default-theme.json:44 @@ -228,10 +229,10 @@ /ui/theme-defs/default/styles/file-offset/color -> default-theme.json:61 /ui/theme-defs/default/styles/focused/background-color -> default-theme.json:76 /ui/theme-defs/default/styles/focused/color -> default-theme.json:75 -/ui/theme-defs/default/styles/footnote-border/background-color -> default-theme.json:127 -/ui/theme-defs/default/styles/footnote-border/color -> default-theme.json:126 -/ui/theme-defs/default/styles/footnote-text/background-color -> default-theme.json:131 -/ui/theme-defs/default/styles/footnote-text/color -> default-theme.json:130 +/ui/theme-defs/default/styles/footnote-border/background-color -> default-theme.json:128 +/ui/theme-defs/default/styles/footnote-border/color -> default-theme.json:127 +/ui/theme-defs/default/styles/footnote-text/background-color -> default-theme.json:132 +/ui/theme-defs/default/styles/footnote-text/color -> default-theme.json:131 /ui/theme-defs/default/styles/h1/underline -> default-theme.json:83 /ui/theme-defs/default/styles/h2/underline -> default-theme.json:86 /ui/theme-defs/default/styles/h3/underline -> default-theme.json:89 @@ -244,7 +245,7 @@ /ui/theme-defs/default/styles/hyperlink/underline -> default-theme.json:104 /ui/theme-defs/default/styles/identifier/background-color -> default-theme.json:15 /ui/theme-defs/default/styles/identifier/color -> default-theme.json:16 -/ui/theme-defs/default/styles/indent-guide/color -> default-theme.json:137 +/ui/theme-defs/default/styles/indent-guide/color -> default-theme.json:138 /ui/theme-defs/default/styles/info/bold -> default-theme.json:27 /ui/theme-defs/default/styles/info/color -> default-theme.json:26 /ui/theme-defs/default/styles/invalid-msg/color -> default-theme.json:64 @@ -254,84 +255,85 @@ /ui/theme-defs/default/styles/ok/color -> default-theme.json:22 /ui/theme-defs/default/styles/popup/background-color -> default-theme.json:68 /ui/theme-defs/default/styles/popup/color -> default-theme.json:67 -/ui/theme-defs/default/styles/quote-border/background-color -> default-theme.json:120 -/ui/theme-defs/default/styles/quote-border/color -> default-theme.json:119 -/ui/theme-defs/default/styles/quoted-text/background-color -> default-theme.json:123 +/ui/theme-defs/default/styles/quote-border/background-color -> default-theme.json:121 +/ui/theme-defs/default/styles/quote-border/color -> default-theme.json:120 +/ui/theme-defs/default/styles/quoted-text/background-color -> default-theme.json:124 /ui/theme-defs/default/styles/scrollbar/background-color -> default-theme.json:72 /ui/theme-defs/default/styles/scrollbar/color -> default-theme.json:71 /ui/theme-defs/default/styles/skewed-time/color -> default-theme.json:55 -/ui/theme-defs/default/styles/snippet-border/color -> default-theme.json:134 -/ui/theme-defs/default/styles/table-border/color -> default-theme.json:113 -/ui/theme-defs/default/styles/table-header/bold -> default-theme.json:116 +/ui/theme-defs/default/styles/snippet-border/color -> default-theme.json:135 +/ui/theme-defs/default/styles/table-border/color -> default-theme.json:114 +/ui/theme-defs/default/styles/table-header/bold -> default-theme.json:117 /ui/theme-defs/default/styles/text/background-color -> default-theme.json:12 /ui/theme-defs/default/styles/text/color -> default-theme.json:11 /ui/theme-defs/default/styles/warning/bold -> default-theme.json:35 /ui/theme-defs/default/styles/warning/color -> default-theme.json:34 -/ui/theme-defs/default/syntax-styles/ascii-control/color -> default-theme.json:203 -/ui/theme-defs/default/syntax-styles/code-border/background-color -> default-theme.json:151 -/ui/theme-defs/default/syntax-styles/code-border/color -> default-theme.json:150 -/ui/theme-defs/default/syntax-styles/comment/color -> default-theme.json:161 -/ui/theme-defs/default/syntax-styles/diff-add/color -> default-theme.json:182 -/ui/theme-defs/default/syntax-styles/diff-delete/color -> default-theme.json:179 -/ui/theme-defs/default/syntax-styles/diff-section/color -> default-theme.json:185 -/ui/theme-defs/default/syntax-styles/doc-directive/color -> default-theme.json:164 -/ui/theme-defs/default/syntax-styles/file/color -> default-theme.json:197 -/ui/theme-defs/default/syntax-styles/function/color -> default-theme.json:212 -/ui/theme-defs/default/syntax-styles/inline-code/background-color -> default-theme.json:143 -/ui/theme-defs/default/syntax-styles/inline-code/color -> default-theme.json:142 -/ui/theme-defs/default/syntax-styles/keyword/color -> default-theme.json:154 -/ui/theme-defs/default/syntax-styles/non-ascii/color -> default-theme.json:206 -/ui/theme-defs/default/syntax-styles/null/color -> default-theme.json:200 -/ui/theme-defs/default/syntax-styles/number/bold -> default-theme.json:209 -/ui/theme-defs/default/syntax-styles/quoted-code/background-color -> default-theme.json:147 -/ui/theme-defs/default/syntax-styles/quoted-code/color -> default-theme.json:146 -/ui/theme-defs/default/syntax-styles/re-repeat/color -> default-theme.json:176 -/ui/theme-defs/default/syntax-styles/re-special/color -> default-theme.json:173 -/ui/theme-defs/default/syntax-styles/separators-references-accessors/color -> default-theme.json:215 -/ui/theme-defs/default/syntax-styles/spectrogram-high/background-color -> default-theme.json:194 -/ui/theme-defs/default/syntax-styles/spectrogram-low/background-color -> default-theme.json:188 -/ui/theme-defs/default/syntax-styles/spectrogram-medium/background-color -> default-theme.json:191 -/ui/theme-defs/default/syntax-styles/string/bold -> default-theme.json:158 -/ui/theme-defs/default/syntax-styles/string/color -> default-theme.json:157 -/ui/theme-defs/default/syntax-styles/symbol/color -> default-theme.json:170 -/ui/theme-defs/default/syntax-styles/type/color -> default-theme.json:218 -/ui/theme-defs/default/syntax-styles/variable/color -> default-theme.json:167 +/ui/theme-defs/default/syntax-styles/ascii-control/color -> default-theme.json:204 +/ui/theme-defs/default/syntax-styles/code-border/background-color -> default-theme.json:152 +/ui/theme-defs/default/syntax-styles/code-border/color -> default-theme.json:151 +/ui/theme-defs/default/syntax-styles/comment/color -> default-theme.json:162 +/ui/theme-defs/default/syntax-styles/diff-add/color -> default-theme.json:183 +/ui/theme-defs/default/syntax-styles/diff-delete/color -> default-theme.json:180 +/ui/theme-defs/default/syntax-styles/diff-section/color -> default-theme.json:186 +/ui/theme-defs/default/syntax-styles/doc-directive/color -> default-theme.json:165 +/ui/theme-defs/default/syntax-styles/file/color -> default-theme.json:198 +/ui/theme-defs/default/syntax-styles/function/color -> default-theme.json:213 +/ui/theme-defs/default/syntax-styles/inline-code/background-color -> default-theme.json:144 +/ui/theme-defs/default/syntax-styles/inline-code/color -> default-theme.json:143 +/ui/theme-defs/default/syntax-styles/keyword/color -> default-theme.json:155 +/ui/theme-defs/default/syntax-styles/non-ascii/color -> default-theme.json:207 +/ui/theme-defs/default/syntax-styles/null/color -> default-theme.json:201 +/ui/theme-defs/default/syntax-styles/number/bold -> default-theme.json:210 +/ui/theme-defs/default/syntax-styles/quoted-code/background-color -> default-theme.json:148 +/ui/theme-defs/default/syntax-styles/quoted-code/color -> default-theme.json:147 +/ui/theme-defs/default/syntax-styles/re-repeat/color -> default-theme.json:177 +/ui/theme-defs/default/syntax-styles/re-special/color -> default-theme.json:174 +/ui/theme-defs/default/syntax-styles/separators-references-accessors/color -> default-theme.json:216 +/ui/theme-defs/default/syntax-styles/spectrogram-high/background-color -> default-theme.json:195 +/ui/theme-defs/default/syntax-styles/spectrogram-low/background-color -> default-theme.json:189 +/ui/theme-defs/default/syntax-styles/spectrogram-medium/background-color -> default-theme.json:192 +/ui/theme-defs/default/syntax-styles/string/bold -> default-theme.json:159 +/ui/theme-defs/default/syntax-styles/string/color -> default-theme.json:158 +/ui/theme-defs/default/syntax-styles/symbol/color -> default-theme.json:171 +/ui/theme-defs/default/syntax-styles/type/color -> default-theme.json:219 +/ui/theme-defs/default/syntax-styles/variable/color -> default-theme.json:168 /ui/theme-defs/default/vars/semantic_highlight_color -> default-theme.json:7 -/ui/theme-defs/dracula/log-level-styles/critical/color -> dracula.json:299 -/ui/theme-defs/dracula/log-level-styles/error/color -> dracula.json:296 -/ui/theme-defs/dracula/log-level-styles/fatal/color -> dracula.json:302 -/ui/theme-defs/dracula/log-level-styles/warning/color -> dracula.json:293 -/ui/theme-defs/dracula/status-styles/active/background-color -> dracula.json:277 -/ui/theme-defs/dracula/status-styles/active/color -> dracula.json:276 -/ui/theme-defs/dracula/status-styles/alert/background-color -> dracula.json:273 -/ui/theme-defs/dracula/status-styles/alert/color -> dracula.json:272 -/ui/theme-defs/dracula/status-styles/disabled-title/background-color -> dracula.json:237 -/ui/theme-defs/dracula/status-styles/disabled-title/bold -> dracula.json:238 -/ui/theme-defs/dracula/status-styles/disabled-title/color -> dracula.json:236 -/ui/theme-defs/dracula/status-styles/hotkey/color -> dracula.json:260 -/ui/theme-defs/dracula/status-styles/hotkey/underline -> dracula.json:261 -/ui/theme-defs/dracula/status-styles/inactive-alert/background-color -> dracula.json:285 -/ui/theme-defs/dracula/status-styles/inactive-alert/color -> dracula.json:284 -/ui/theme-defs/dracula/status-styles/inactive/background-color -> dracula.json:281 -/ui/theme-defs/dracula/status-styles/inactive/color -> dracula.json:280 -/ui/theme-defs/dracula/status-styles/info/background-color -> dracula.json:252 -/ui/theme-defs/dracula/status-styles/info/color -> dracula.json:251 -/ui/theme-defs/dracula/status-styles/subtitle/background-color -> dracula.json:247 -/ui/theme-defs/dracula/status-styles/subtitle/bold -> dracula.json:248 -/ui/theme-defs/dracula/status-styles/subtitle/color -> dracula.json:246 -/ui/theme-defs/dracula/status-styles/suggestion/color -> dracula.json:288 -/ui/theme-defs/dracula/status-styles/text/background-color -> dracula.json:265 -/ui/theme-defs/dracula/status-styles/text/color -> dracula.json:264 -/ui/theme-defs/dracula/status-styles/title-hotkey/background-color -> dracula.json:256 -/ui/theme-defs/dracula/status-styles/title-hotkey/color -> dracula.json:255 -/ui/theme-defs/dracula/status-styles/title-hotkey/underline -> dracula.json:257 -/ui/theme-defs/dracula/status-styles/title/background-color -> dracula.json:242 -/ui/theme-defs/dracula/status-styles/title/bold -> dracula.json:243 -/ui/theme-defs/dracula/status-styles/title/color -> dracula.json:241 -/ui/theme-defs/dracula/status-styles/warn/background-color -> dracula.json:269 -/ui/theme-defs/dracula/status-styles/warn/color -> dracula.json:268 +/ui/theme-defs/dracula/log-level-styles/critical/color -> dracula.json:300 +/ui/theme-defs/dracula/log-level-styles/error/color -> dracula.json:297 +/ui/theme-defs/dracula/log-level-styles/fatal/color -> dracula.json:303 +/ui/theme-defs/dracula/log-level-styles/warning/color -> dracula.json:294 +/ui/theme-defs/dracula/status-styles/active/background-color -> dracula.json:278 +/ui/theme-defs/dracula/status-styles/active/color -> dracula.json:277 +/ui/theme-defs/dracula/status-styles/alert/background-color -> dracula.json:274 +/ui/theme-defs/dracula/status-styles/alert/color -> dracula.json:273 +/ui/theme-defs/dracula/status-styles/disabled-title/background-color -> dracula.json:238 +/ui/theme-defs/dracula/status-styles/disabled-title/bold -> dracula.json:239 +/ui/theme-defs/dracula/status-styles/disabled-title/color -> dracula.json:237 +/ui/theme-defs/dracula/status-styles/hotkey/color -> dracula.json:261 +/ui/theme-defs/dracula/status-styles/hotkey/underline -> dracula.json:262 +/ui/theme-defs/dracula/status-styles/inactive-alert/background-color -> dracula.json:286 +/ui/theme-defs/dracula/status-styles/inactive-alert/color -> dracula.json:285 +/ui/theme-defs/dracula/status-styles/inactive/background-color -> dracula.json:282 +/ui/theme-defs/dracula/status-styles/inactive/color -> dracula.json:281 +/ui/theme-defs/dracula/status-styles/info/background-color -> dracula.json:253 +/ui/theme-defs/dracula/status-styles/info/color -> dracula.json:252 +/ui/theme-defs/dracula/status-styles/subtitle/background-color -> dracula.json:248 +/ui/theme-defs/dracula/status-styles/subtitle/bold -> dracula.json:249 +/ui/theme-defs/dracula/status-styles/subtitle/color -> dracula.json:247 +/ui/theme-defs/dracula/status-styles/suggestion/color -> dracula.json:289 +/ui/theme-defs/dracula/status-styles/text/background-color -> dracula.json:266 +/ui/theme-defs/dracula/status-styles/text/color -> dracula.json:265 +/ui/theme-defs/dracula/status-styles/title-hotkey/background-color -> dracula.json:257 +/ui/theme-defs/dracula/status-styles/title-hotkey/color -> dracula.json:256 +/ui/theme-defs/dracula/status-styles/title-hotkey/underline -> dracula.json:258 +/ui/theme-defs/dracula/status-styles/title/background-color -> dracula.json:243 +/ui/theme-defs/dracula/status-styles/title/bold -> dracula.json:244 +/ui/theme-defs/dracula/status-styles/title/color -> dracula.json:242 +/ui/theme-defs/dracula/status-styles/warn/background-color -> dracula.json:270 +/ui/theme-defs/dracula/status-styles/warn/color -> dracula.json:269 /ui/theme-defs/dracula/styles/adjusted-time/color -> dracula.json:61 /ui/theme-defs/dracula/styles/alt-text/background-color -> dracula.json:29 +/ui/theme-defs/dracula/styles/breadcrumb/bold -> dracula.json:122 /ui/theme-defs/dracula/styles/breadcrumb/color -> dracula.json:121 /ui/theme-defs/dracula/styles/cursor-line/background-color -> dracula.json:53 /ui/theme-defs/dracula/styles/cursor-line/bold -> dracula.json:54 @@ -345,10 +347,10 @@ /ui/theme-defs/dracula/styles/file-offset/color -> dracula.json:70 /ui/theme-defs/dracula/styles/focused/background-color -> dracula.json:77 /ui/theme-defs/dracula/styles/focused/color -> dracula.json:76 -/ui/theme-defs/dracula/styles/footnote-border/background-color -> dracula.json:139 -/ui/theme-defs/dracula/styles/footnote-border/color -> dracula.json:138 -/ui/theme-defs/dracula/styles/footnote-text/background-color -> dracula.json:143 -/ui/theme-defs/dracula/styles/footnote-text/color -> dracula.json:142 +/ui/theme-defs/dracula/styles/footnote-border/background-color -> dracula.json:140 +/ui/theme-defs/dracula/styles/footnote-border/color -> dracula.json:139 +/ui/theme-defs/dracula/styles/footnote-text/background-color -> dracula.json:144 +/ui/theme-defs/dracula/styles/footnote-text/color -> dracula.json:143 /ui/theme-defs/dracula/styles/h1/bold -> dracula.json:93 /ui/theme-defs/dracula/styles/h1/color -> dracula.json:92 /ui/theme-defs/dracula/styles/h2/color -> dracula.json:96 @@ -362,7 +364,7 @@ /ui/theme-defs/dracula/styles/hr/color -> dracula.json:112 /ui/theme-defs/dracula/styles/hyperlink/underline -> dracula.json:115 /ui/theme-defs/dracula/styles/identifier/color -> dracula.json:22 -/ui/theme-defs/dracula/styles/indent-guide/color -> dracula.json:149 +/ui/theme-defs/dracula/styles/indent-guide/color -> dracula.json:150 /ui/theme-defs/dracula/styles/info/bold -> dracula.json:37 /ui/theme-defs/dracula/styles/info/color -> dracula.json:36 /ui/theme-defs/dracula/styles/invalid-msg/color -> dracula.json:73 @@ -372,50 +374,50 @@ /ui/theme-defs/dracula/styles/ok/color -> dracula.json:32 /ui/theme-defs/dracula/styles/popup/background-color -> dracula.json:85 /ui/theme-defs/dracula/styles/popup/color -> dracula.json:84 -/ui/theme-defs/dracula/styles/quote-border/background-color -> dracula.json:131 -/ui/theme-defs/dracula/styles/quote-border/color -> dracula.json:130 -/ui/theme-defs/dracula/styles/quoted-text/background-color -> dracula.json:135 -/ui/theme-defs/dracula/styles/quoted-text/color -> dracula.json:134 +/ui/theme-defs/dracula/styles/quote-border/background-color -> dracula.json:132 +/ui/theme-defs/dracula/styles/quote-border/color -> dracula.json:131 +/ui/theme-defs/dracula/styles/quoted-text/background-color -> dracula.json:136 +/ui/theme-defs/dracula/styles/quoted-text/color -> dracula.json:135 /ui/theme-defs/dracula/styles/scrollbar/background-color -> dracula.json:89 /ui/theme-defs/dracula/styles/scrollbar/color -> dracula.json:88 /ui/theme-defs/dracula/styles/skewed-time/color -> dracula.json:64 -/ui/theme-defs/dracula/styles/snippet-border/color -> dracula.json:146 -/ui/theme-defs/dracula/styles/table-border/color -> dracula.json:124 -/ui/theme-defs/dracula/styles/table-header/bold -> dracula.json:127 +/ui/theme-defs/dracula/styles/snippet-border/color -> dracula.json:147 +/ui/theme-defs/dracula/styles/table-border/color -> dracula.json:125 +/ui/theme-defs/dracula/styles/table-header/bold -> dracula.json:128 /ui/theme-defs/dracula/styles/text/background-color -> dracula.json:26 /ui/theme-defs/dracula/styles/text/color -> dracula.json:25 /ui/theme-defs/dracula/styles/warning/bold -> dracula.json:45 /ui/theme-defs/dracula/styles/warning/color -> dracula.json:44 -/ui/theme-defs/dracula/syntax-styles/ascii-control/color -> dracula.json:216 -/ui/theme-defs/dracula/syntax-styles/code-border/background-color -> dracula.json:163 -/ui/theme-defs/dracula/syntax-styles/code-border/color -> dracula.json:162 -/ui/theme-defs/dracula/syntax-styles/comment/color -> dracula.json:174 -/ui/theme-defs/dracula/syntax-styles/diff-add/color -> dracula.json:195 -/ui/theme-defs/dracula/syntax-styles/diff-delete/color -> dracula.json:192 -/ui/theme-defs/dracula/syntax-styles/diff-section/color -> dracula.json:198 -/ui/theme-defs/dracula/syntax-styles/doc-directive/color -> dracula.json:177 -/ui/theme-defs/dracula/syntax-styles/file/color -> dracula.json:210 -/ui/theme-defs/dracula/syntax-styles/function/color -> dracula.json:225 -/ui/theme-defs/dracula/syntax-styles/inline-code/background-color -> dracula.json:155 -/ui/theme-defs/dracula/syntax-styles/inline-code/color -> dracula.json:154 -/ui/theme-defs/dracula/syntax-styles/keyword/bold -> dracula.json:167 -/ui/theme-defs/dracula/syntax-styles/keyword/color -> dracula.json:166 -/ui/theme-defs/dracula/syntax-styles/non-ascii/color -> dracula.json:219 -/ui/theme-defs/dracula/syntax-styles/null/color -> dracula.json:213 -/ui/theme-defs/dracula/syntax-styles/number/bold -> dracula.json:222 -/ui/theme-defs/dracula/syntax-styles/quoted-code/background-color -> dracula.json:159 -/ui/theme-defs/dracula/syntax-styles/quoted-code/color -> dracula.json:158 -/ui/theme-defs/dracula/syntax-styles/re-repeat/color -> dracula.json:189 -/ui/theme-defs/dracula/syntax-styles/re-special/color -> dracula.json:186 -/ui/theme-defs/dracula/syntax-styles/separators-references-accessors/color -> dracula.json:228 -/ui/theme-defs/dracula/syntax-styles/spectrogram-high/background-color -> dracula.json:207 -/ui/theme-defs/dracula/syntax-styles/spectrogram-low/background-color -> dracula.json:201 -/ui/theme-defs/dracula/syntax-styles/spectrogram-medium/background-color -> dracula.json:204 -/ui/theme-defs/dracula/syntax-styles/string/bold -> dracula.json:171 -/ui/theme-defs/dracula/syntax-styles/string/color -> dracula.json:170 -/ui/theme-defs/dracula/syntax-styles/symbol/color -> dracula.json:183 -/ui/theme-defs/dracula/syntax-styles/type/color -> dracula.json:231 -/ui/theme-defs/dracula/syntax-styles/variable/color -> dracula.json:180 +/ui/theme-defs/dracula/syntax-styles/ascii-control/color -> dracula.json:217 +/ui/theme-defs/dracula/syntax-styles/code-border/background-color -> dracula.json:164 +/ui/theme-defs/dracula/syntax-styles/code-border/color -> dracula.json:163 +/ui/theme-defs/dracula/syntax-styles/comment/color -> dracula.json:175 +/ui/theme-defs/dracula/syntax-styles/diff-add/color -> dracula.json:196 +/ui/theme-defs/dracula/syntax-styles/diff-delete/color -> dracula.json:193 +/ui/theme-defs/dracula/syntax-styles/diff-section/color -> dracula.json:199 +/ui/theme-defs/dracula/syntax-styles/doc-directive/color -> dracula.json:178 +/ui/theme-defs/dracula/syntax-styles/file/color -> dracula.json:211 +/ui/theme-defs/dracula/syntax-styles/function/color -> dracula.json:226 +/ui/theme-defs/dracula/syntax-styles/inline-code/background-color -> dracula.json:156 +/ui/theme-defs/dracula/syntax-styles/inline-code/color -> dracula.json:155 +/ui/theme-defs/dracula/syntax-styles/keyword/bold -> dracula.json:168 +/ui/theme-defs/dracula/syntax-styles/keyword/color -> dracula.json:167 +/ui/theme-defs/dracula/syntax-styles/non-ascii/color -> dracula.json:220 +/ui/theme-defs/dracula/syntax-styles/null/color -> dracula.json:214 +/ui/theme-defs/dracula/syntax-styles/number/bold -> dracula.json:223 +/ui/theme-defs/dracula/syntax-styles/quoted-code/background-color -> dracula.json:160 +/ui/theme-defs/dracula/syntax-styles/quoted-code/color -> dracula.json:159 +/ui/theme-defs/dracula/syntax-styles/re-repeat/color -> dracula.json:190 +/ui/theme-defs/dracula/syntax-styles/re-special/color -> dracula.json:187 +/ui/theme-defs/dracula/syntax-styles/separators-references-accessors/color -> dracula.json:229 +/ui/theme-defs/dracula/syntax-styles/spectrogram-high/background-color -> dracula.json:208 +/ui/theme-defs/dracula/syntax-styles/spectrogram-low/background-color -> dracula.json:202 +/ui/theme-defs/dracula/syntax-styles/spectrogram-medium/background-color -> dracula.json:205 +/ui/theme-defs/dracula/syntax-styles/string/bold -> dracula.json:172 +/ui/theme-defs/dracula/syntax-styles/string/color -> dracula.json:171 +/ui/theme-defs/dracula/syntax-styles/symbol/color -> dracula.json:184 +/ui/theme-defs/dracula/syntax-styles/type/color -> dracula.json:232 +/ui/theme-defs/dracula/syntax-styles/variable/color -> dracula.json:181 /ui/theme-defs/dracula/vars/black -> dracula.json:7 /ui/theme-defs/dracula/vars/blue -> dracula.json:11 /ui/theme-defs/dracula/vars/cyan -> dracula.json:13 @@ -428,167 +430,170 @@ /ui/theme-defs/dracula/vars/semantic_highlight_color -> dracula.json:18 /ui/theme-defs/dracula/vars/white -> dracula.json:14 /ui/theme-defs/dracula/vars/yellow -> dracula.json:10 -/ui/theme-defs/eldar/log-level-styles/critical/color -> eldar.json:294 -/ui/theme-defs/eldar/log-level-styles/error/color -> eldar.json:291 -/ui/theme-defs/eldar/log-level-styles/fatal/color -> eldar.json:297 -/ui/theme-defs/eldar/log-level-styles/warning/color -> eldar.json:288 -/ui/theme-defs/eldar/status-styles/active/background-color -> eldar.json:259 -/ui/theme-defs/eldar/status-styles/active/color -> eldar.json:258 -/ui/theme-defs/eldar/status-styles/alert/background-color -> eldar.json:255 -/ui/theme-defs/eldar/status-styles/alert/color -> eldar.json:254 -/ui/theme-defs/eldar/status-styles/disabled-title/background-color -> eldar.json:232 -/ui/theme-defs/eldar/status-styles/disabled-title/bold -> eldar.json:233 -/ui/theme-defs/eldar/status-styles/disabled-title/color -> eldar.json:231 -/ui/theme-defs/eldar/status-styles/hotkey/color -> eldar.json:271 -/ui/theme-defs/eldar/status-styles/hotkey/underline -> eldar.json:272 -/ui/theme-defs/eldar/status-styles/inactive-alert/background-color -> eldar.json:280 -/ui/theme-defs/eldar/status-styles/inactive-alert/color -> eldar.json:279 -/ui/theme-defs/eldar/status-styles/inactive/background-color -> eldar.json:276 -/ui/theme-defs/eldar/status-styles/inactive/color -> eldar.json:275 -/ui/theme-defs/eldar/status-styles/info/background-color -> eldar.json:263 -/ui/theme-defs/eldar/status-styles/info/color -> eldar.json:262 -/ui/theme-defs/eldar/status-styles/subtitle/background-color -> eldar.json:242 -/ui/theme-defs/eldar/status-styles/subtitle/bold -> eldar.json:243 -/ui/theme-defs/eldar/status-styles/subtitle/color -> eldar.json:241 -/ui/theme-defs/eldar/status-styles/suggestion/color -> eldar.json:283 -/ui/theme-defs/eldar/status-styles/text/background-color -> eldar.json:247 -/ui/theme-defs/eldar/status-styles/text/color -> eldar.json:246 -/ui/theme-defs/eldar/status-styles/title-hotkey/background-color -> eldar.json:267 -/ui/theme-defs/eldar/status-styles/title-hotkey/color -> eldar.json:266 -/ui/theme-defs/eldar/status-styles/title-hotkey/underline -> eldar.json:268 -/ui/theme-defs/eldar/status-styles/title/background-color -> eldar.json:237 -/ui/theme-defs/eldar/status-styles/title/bold -> eldar.json:238 -/ui/theme-defs/eldar/status-styles/title/color -> eldar.json:236 -/ui/theme-defs/eldar/status-styles/warn/background-color -> eldar.json:251 -/ui/theme-defs/eldar/status-styles/warn/color -> eldar.json:250 -/ui/theme-defs/eldar/styles/adjusted-time/color -> eldar.json:60 -/ui/theme-defs/eldar/styles/alt-text/bold -> eldar.json:27 -/ui/theme-defs/eldar/styles/breadcrumb/color -> eldar.json:118 -/ui/theme-defs/eldar/styles/cursor-line/background-color -> eldar.json:51 -/ui/theme-defs/eldar/styles/cursor-line/bold -> eldar.json:52 -/ui/theme-defs/eldar/styles/cursor-line/color -> eldar.json:50 -/ui/theme-defs/eldar/styles/cursor-line/underline -> eldar.json:53 -/ui/theme-defs/eldar/styles/disabled-cursor-line/background-color -> eldar.json:57 -/ui/theme-defs/eldar/styles/disabled-cursor-line/color -> eldar.json:56 -/ui/theme-defs/eldar/styles/disabled-focused/background-color -> eldar.json:80 -/ui/theme-defs/eldar/styles/disabled-focused/color -> eldar.json:79 -/ui/theme-defs/eldar/styles/error/bold -> eldar.json:39 -/ui/theme-defs/eldar/styles/error/color -> eldar.json:38 -/ui/theme-defs/eldar/styles/file-offset/color -> eldar.json:69 -/ui/theme-defs/eldar/styles/focused/background-color -> eldar.json:76 -/ui/theme-defs/eldar/styles/focused/color -> eldar.json:75 -/ui/theme-defs/eldar/styles/footnote-border/background-color -> eldar.json:135 -/ui/theme-defs/eldar/styles/footnote-border/color -> eldar.json:134 -/ui/theme-defs/eldar/styles/footnote-text/background-color -> eldar.json:139 -/ui/theme-defs/eldar/styles/footnote-text/color -> eldar.json:138 -/ui/theme-defs/eldar/styles/h1/underline -> eldar.json:91 -/ui/theme-defs/eldar/styles/h2/underline -> eldar.json:94 -/ui/theme-defs/eldar/styles/h3/underline -> eldar.json:97 -/ui/theme-defs/eldar/styles/h4/underline -> eldar.json:100 -/ui/theme-defs/eldar/styles/h5/underline -> eldar.json:103 -/ui/theme-defs/eldar/styles/h6/underline -> eldar.json:106 -/ui/theme-defs/eldar/styles/hidden/bold -> eldar.json:47 -/ui/theme-defs/eldar/styles/hidden/color -> eldar.json:46 -/ui/theme-defs/eldar/styles/hr/color -> eldar.json:109 -/ui/theme-defs/eldar/styles/hyperlink/underline -> eldar.json:112 -/ui/theme-defs/eldar/styles/identifier/background-color -> eldar.json:19 -/ui/theme-defs/eldar/styles/identifier/color -> eldar.json:20 -/ui/theme-defs/eldar/styles/indent-guide/color -> eldar.json:145 -/ui/theme-defs/eldar/styles/info/bold -> eldar.json:35 -/ui/theme-defs/eldar/styles/info/color -> eldar.json:34 -/ui/theme-defs/eldar/styles/invalid-msg/color -> eldar.json:72 -/ui/theme-defs/eldar/styles/list-glyph/color -> eldar.json:115 -/ui/theme-defs/eldar/styles/offset-time/color -> eldar.json:66 -/ui/theme-defs/eldar/styles/ok/bold -> eldar.json:31 -/ui/theme-defs/eldar/styles/ok/color -> eldar.json:30 -/ui/theme-defs/eldar/styles/popup/background-color -> eldar.json:84 -/ui/theme-defs/eldar/styles/popup/color -> eldar.json:83 -/ui/theme-defs/eldar/styles/quote-border/background-color -> eldar.json:128 -/ui/theme-defs/eldar/styles/quote-border/color -> eldar.json:127 -/ui/theme-defs/eldar/styles/quoted-text/background-color -> eldar.json:131 -/ui/theme-defs/eldar/styles/scrollbar/background-color -> eldar.json:88 -/ui/theme-defs/eldar/styles/scrollbar/color -> eldar.json:87 -/ui/theme-defs/eldar/styles/skewed-time/color -> eldar.json:63 -/ui/theme-defs/eldar/styles/snippet-border/color -> eldar.json:142 -/ui/theme-defs/eldar/styles/table-border/color -> eldar.json:121 -/ui/theme-defs/eldar/styles/table-header/bold -> eldar.json:124 -/ui/theme-defs/eldar/styles/text/background-color -> eldar.json:24 -/ui/theme-defs/eldar/styles/text/color -> eldar.json:23 -/ui/theme-defs/eldar/styles/warning/bold -> eldar.json:43 -/ui/theme-defs/eldar/styles/warning/color -> eldar.json:42 -/ui/theme-defs/eldar/syntax-styles/ascii-control/color -> eldar.json:214 -/ui/theme-defs/eldar/syntax-styles/code-border/background-color -> eldar.json:159 -/ui/theme-defs/eldar/syntax-styles/code-border/color -> eldar.json:158 -/ui/theme-defs/eldar/syntax-styles/comment/color -> eldar.json:169 -/ui/theme-defs/eldar/syntax-styles/diff-add/color -> eldar.json:193 -/ui/theme-defs/eldar/syntax-styles/diff-delete/color -> eldar.json:190 -/ui/theme-defs/eldar/syntax-styles/diff-section/color -> eldar.json:196 -/ui/theme-defs/eldar/syntax-styles/doc-directive/color -> eldar.json:172 -/ui/theme-defs/eldar/syntax-styles/file/color -> eldar.json:208 -/ui/theme-defs/eldar/syntax-styles/function/color -> eldar.json:220 -/ui/theme-defs/eldar/syntax-styles/inline-code/background-color -> eldar.json:151 -/ui/theme-defs/eldar/syntax-styles/inline-code/color -> eldar.json:150 -/ui/theme-defs/eldar/syntax-styles/keyword/color -> eldar.json:162 -/ui/theme-defs/eldar/syntax-styles/non-ascii/color -> eldar.json:217 -/ui/theme-defs/eldar/syntax-styles/null/color -> eldar.json:211 -/ui/theme-defs/eldar/syntax-styles/number/color -> eldar.json:175 -/ui/theme-defs/eldar/syntax-styles/quoted-code/background-color -> eldar.json:155 -/ui/theme-defs/eldar/syntax-styles/quoted-code/color -> eldar.json:154 -/ui/theme-defs/eldar/syntax-styles/re-repeat/color -> eldar.json:187 -/ui/theme-defs/eldar/syntax-styles/re-special/color -> eldar.json:184 -/ui/theme-defs/eldar/syntax-styles/separators-references-accessors/color -> eldar.json:223 -/ui/theme-defs/eldar/syntax-styles/spectrogram-high/background-color -> eldar.json:205 -/ui/theme-defs/eldar/syntax-styles/spectrogram-low/background-color -> eldar.json:199 -/ui/theme-defs/eldar/syntax-styles/spectrogram-medium/background-color -> eldar.json:202 -/ui/theme-defs/eldar/syntax-styles/string/bold -> eldar.json:166 -/ui/theme-defs/eldar/syntax-styles/string/color -> eldar.json:165 -/ui/theme-defs/eldar/syntax-styles/symbol/color -> eldar.json:181 -/ui/theme-defs/eldar/syntax-styles/type/color -> eldar.json:226 -/ui/theme-defs/eldar/syntax-styles/variable/color -> eldar.json:178 +/ui/theme-defs/eldar/log-level-styles/critical/color -> eldar.json:296 +/ui/theme-defs/eldar/log-level-styles/error/color -> eldar.json:293 +/ui/theme-defs/eldar/log-level-styles/fatal/color -> eldar.json:299 +/ui/theme-defs/eldar/log-level-styles/warning/color -> eldar.json:290 +/ui/theme-defs/eldar/status-styles/active/background-color -> eldar.json:261 +/ui/theme-defs/eldar/status-styles/active/color -> eldar.json:260 +/ui/theme-defs/eldar/status-styles/alert/background-color -> eldar.json:257 +/ui/theme-defs/eldar/status-styles/alert/color -> eldar.json:256 +/ui/theme-defs/eldar/status-styles/disabled-title/background-color -> eldar.json:234 +/ui/theme-defs/eldar/status-styles/disabled-title/bold -> eldar.json:235 +/ui/theme-defs/eldar/status-styles/disabled-title/color -> eldar.json:233 +/ui/theme-defs/eldar/status-styles/hotkey/color -> eldar.json:273 +/ui/theme-defs/eldar/status-styles/hotkey/underline -> eldar.json:274 +/ui/theme-defs/eldar/status-styles/inactive-alert/background-color -> eldar.json:282 +/ui/theme-defs/eldar/status-styles/inactive-alert/color -> eldar.json:281 +/ui/theme-defs/eldar/status-styles/inactive/background-color -> eldar.json:278 +/ui/theme-defs/eldar/status-styles/inactive/color -> eldar.json:277 +/ui/theme-defs/eldar/status-styles/info/background-color -> eldar.json:265 +/ui/theme-defs/eldar/status-styles/info/color -> eldar.json:264 +/ui/theme-defs/eldar/status-styles/subtitle/background-color -> eldar.json:244 +/ui/theme-defs/eldar/status-styles/subtitle/bold -> eldar.json:245 +/ui/theme-defs/eldar/status-styles/subtitle/color -> eldar.json:243 +/ui/theme-defs/eldar/status-styles/suggestion/color -> eldar.json:285 +/ui/theme-defs/eldar/status-styles/text/background-color -> eldar.json:249 +/ui/theme-defs/eldar/status-styles/text/color -> eldar.json:248 +/ui/theme-defs/eldar/status-styles/title-hotkey/background-color -> eldar.json:269 +/ui/theme-defs/eldar/status-styles/title-hotkey/color -> eldar.json:268 +/ui/theme-defs/eldar/status-styles/title-hotkey/underline -> eldar.json:270 +/ui/theme-defs/eldar/status-styles/title/background-color -> eldar.json:239 +/ui/theme-defs/eldar/status-styles/title/bold -> eldar.json:240 +/ui/theme-defs/eldar/status-styles/title/color -> eldar.json:238 +/ui/theme-defs/eldar/status-styles/warn/background-color -> eldar.json:253 +/ui/theme-defs/eldar/status-styles/warn/color -> eldar.json:252 +/ui/theme-defs/eldar/styles/adjusted-time/color -> eldar.json:61 +/ui/theme-defs/eldar/styles/alt-text/bold -> eldar.json:28 +/ui/theme-defs/eldar/styles/breadcrumb/bold -> eldar.json:120 +/ui/theme-defs/eldar/styles/breadcrumb/color -> eldar.json:119 +/ui/theme-defs/eldar/styles/cursor-line/background-color -> eldar.json:52 +/ui/theme-defs/eldar/styles/cursor-line/bold -> eldar.json:53 +/ui/theme-defs/eldar/styles/cursor-line/color -> eldar.json:51 +/ui/theme-defs/eldar/styles/cursor-line/underline -> eldar.json:54 +/ui/theme-defs/eldar/styles/disabled-cursor-line/background-color -> eldar.json:58 +/ui/theme-defs/eldar/styles/disabled-cursor-line/color -> eldar.json:57 +/ui/theme-defs/eldar/styles/disabled-focused/background-color -> eldar.json:81 +/ui/theme-defs/eldar/styles/disabled-focused/color -> eldar.json:80 +/ui/theme-defs/eldar/styles/error/bold -> eldar.json:40 +/ui/theme-defs/eldar/styles/error/color -> eldar.json:39 +/ui/theme-defs/eldar/styles/file-offset/color -> eldar.json:70 +/ui/theme-defs/eldar/styles/focused/background-color -> eldar.json:77 +/ui/theme-defs/eldar/styles/focused/color -> eldar.json:76 +/ui/theme-defs/eldar/styles/footnote-border/background-color -> eldar.json:137 +/ui/theme-defs/eldar/styles/footnote-border/color -> eldar.json:136 +/ui/theme-defs/eldar/styles/footnote-text/background-color -> eldar.json:141 +/ui/theme-defs/eldar/styles/footnote-text/color -> eldar.json:140 +/ui/theme-defs/eldar/styles/h1/underline -> eldar.json:92 +/ui/theme-defs/eldar/styles/h2/underline -> eldar.json:95 +/ui/theme-defs/eldar/styles/h3/underline -> eldar.json:98 +/ui/theme-defs/eldar/styles/h4/underline -> eldar.json:101 +/ui/theme-defs/eldar/styles/h5/underline -> eldar.json:104 +/ui/theme-defs/eldar/styles/h6/underline -> eldar.json:107 +/ui/theme-defs/eldar/styles/hidden/bold -> eldar.json:48 +/ui/theme-defs/eldar/styles/hidden/color -> eldar.json:47 +/ui/theme-defs/eldar/styles/hr/color -> eldar.json:110 +/ui/theme-defs/eldar/styles/hyperlink/underline -> eldar.json:113 +/ui/theme-defs/eldar/styles/identifier/background-color -> eldar.json:20 +/ui/theme-defs/eldar/styles/identifier/color -> eldar.json:21 +/ui/theme-defs/eldar/styles/indent-guide/color -> eldar.json:147 +/ui/theme-defs/eldar/styles/info/bold -> eldar.json:36 +/ui/theme-defs/eldar/styles/info/color -> eldar.json:35 +/ui/theme-defs/eldar/styles/invalid-msg/color -> eldar.json:73 +/ui/theme-defs/eldar/styles/list-glyph/color -> eldar.json:116 +/ui/theme-defs/eldar/styles/offset-time/color -> eldar.json:67 +/ui/theme-defs/eldar/styles/ok/bold -> eldar.json:32 +/ui/theme-defs/eldar/styles/ok/color -> eldar.json:31 +/ui/theme-defs/eldar/styles/popup/background-color -> eldar.json:85 +/ui/theme-defs/eldar/styles/popup/color -> eldar.json:84 +/ui/theme-defs/eldar/styles/quote-border/background-color -> eldar.json:130 +/ui/theme-defs/eldar/styles/quote-border/color -> eldar.json:129 +/ui/theme-defs/eldar/styles/quoted-text/background-color -> eldar.json:133 +/ui/theme-defs/eldar/styles/scrollbar/background-color -> eldar.json:89 +/ui/theme-defs/eldar/styles/scrollbar/color -> eldar.json:88 +/ui/theme-defs/eldar/styles/skewed-time/color -> eldar.json:64 +/ui/theme-defs/eldar/styles/snippet-border/color -> eldar.json:144 +/ui/theme-defs/eldar/styles/table-border/color -> eldar.json:123 +/ui/theme-defs/eldar/styles/table-header/bold -> eldar.json:126 +/ui/theme-defs/eldar/styles/text/background-color -> eldar.json:25 +/ui/theme-defs/eldar/styles/text/color -> eldar.json:24 +/ui/theme-defs/eldar/styles/warning/bold -> eldar.json:44 +/ui/theme-defs/eldar/styles/warning/color -> eldar.json:43 +/ui/theme-defs/eldar/syntax-styles/ascii-control/color -> eldar.json:216 +/ui/theme-defs/eldar/syntax-styles/code-border/background-color -> eldar.json:161 +/ui/theme-defs/eldar/syntax-styles/code-border/color -> eldar.json:160 +/ui/theme-defs/eldar/syntax-styles/comment/color -> eldar.json:171 +/ui/theme-defs/eldar/syntax-styles/diff-add/color -> eldar.json:195 +/ui/theme-defs/eldar/syntax-styles/diff-delete/color -> eldar.json:192 +/ui/theme-defs/eldar/syntax-styles/diff-section/color -> eldar.json:198 +/ui/theme-defs/eldar/syntax-styles/doc-directive/color -> eldar.json:174 +/ui/theme-defs/eldar/syntax-styles/file/color -> eldar.json:210 +/ui/theme-defs/eldar/syntax-styles/function/color -> eldar.json:222 +/ui/theme-defs/eldar/syntax-styles/inline-code/background-color -> eldar.json:153 +/ui/theme-defs/eldar/syntax-styles/inline-code/color -> eldar.json:152 +/ui/theme-defs/eldar/syntax-styles/keyword/color -> eldar.json:164 +/ui/theme-defs/eldar/syntax-styles/non-ascii/color -> eldar.json:219 +/ui/theme-defs/eldar/syntax-styles/null/color -> eldar.json:213 +/ui/theme-defs/eldar/syntax-styles/number/color -> eldar.json:177 +/ui/theme-defs/eldar/syntax-styles/quoted-code/background-color -> eldar.json:157 +/ui/theme-defs/eldar/syntax-styles/quoted-code/color -> eldar.json:156 +/ui/theme-defs/eldar/syntax-styles/re-repeat/color -> eldar.json:189 +/ui/theme-defs/eldar/syntax-styles/re-special/color -> eldar.json:186 +/ui/theme-defs/eldar/syntax-styles/separators-references-accessors/color -> eldar.json:225 +/ui/theme-defs/eldar/syntax-styles/spectrogram-high/background-color -> eldar.json:207 +/ui/theme-defs/eldar/syntax-styles/spectrogram-low/background-color -> eldar.json:201 +/ui/theme-defs/eldar/syntax-styles/spectrogram-medium/background-color -> eldar.json:204 +/ui/theme-defs/eldar/syntax-styles/string/bold -> eldar.json:168 +/ui/theme-defs/eldar/syntax-styles/string/color -> eldar.json:167 +/ui/theme-defs/eldar/syntax-styles/symbol/color -> eldar.json:183 +/ui/theme-defs/eldar/syntax-styles/type/color -> eldar.json:228 +/ui/theme-defs/eldar/syntax-styles/variable/color -> eldar.json:180 /ui/theme-defs/eldar/vars/black -> eldar.json:7 /ui/theme-defs/eldar/vars/blue -> eldar.json:11 /ui/theme-defs/eldar/vars/cyan -> eldar.json:12 /ui/theme-defs/eldar/vars/green -> eldar.json:13 /ui/theme-defs/eldar/vars/magenta -> eldar.json:10 +/ui/theme-defs/eldar/vars/orange -> eldar.json:15 /ui/theme-defs/eldar/vars/red -> eldar.json:9 -/ui/theme-defs/eldar/vars/semantic_highlight_color -> eldar.json:15 +/ui/theme-defs/eldar/vars/semantic_highlight_color -> eldar.json:16 /ui/theme-defs/eldar/vars/white -> eldar.json:14 /ui/theme-defs/eldar/vars/yellow -> eldar.json:8 -/ui/theme-defs/grayscale/log-level-styles/critical/color -> grayscale.json:234 -/ui/theme-defs/grayscale/log-level-styles/error/color -> grayscale.json:231 -/ui/theme-defs/grayscale/log-level-styles/fatal/color -> grayscale.json:237 -/ui/theme-defs/grayscale/log-level-styles/warning/color -> grayscale.json:228 -/ui/theme-defs/grayscale/status-styles/active/background-color -> grayscale.json:208 -/ui/theme-defs/grayscale/status-styles/active/color -> grayscale.json:207 -/ui/theme-defs/grayscale/status-styles/alert/background-color -> grayscale.json:204 -/ui/theme-defs/grayscale/status-styles/alert/color -> grayscale.json:203 -/ui/theme-defs/grayscale/status-styles/disabled-title/background-color -> grayscale.json:172 -/ui/theme-defs/grayscale/status-styles/disabled-title/bold -> grayscale.json:173 -/ui/theme-defs/grayscale/status-styles/disabled-title/color -> grayscale.json:171 -/ui/theme-defs/grayscale/status-styles/hotkey/color -> grayscale.json:191 -/ui/theme-defs/grayscale/status-styles/hotkey/underline -> grayscale.json:192 -/ui/theme-defs/grayscale/status-styles/inactive-alert/background-color -> grayscale.json:220 -/ui/theme-defs/grayscale/status-styles/inactive-alert/color -> grayscale.json:219 -/ui/theme-defs/grayscale/status-styles/inactive/background-color -> grayscale.json:216 -/ui/theme-defs/grayscale/status-styles/inactive/color -> grayscale.json:215 -/ui/theme-defs/grayscale/status-styles/info/background-color -> grayscale.json:212 -/ui/theme-defs/grayscale/status-styles/info/color -> grayscale.json:211 -/ui/theme-defs/grayscale/status-styles/subtitle/background-color -> grayscale.json:182 -/ui/theme-defs/grayscale/status-styles/subtitle/bold -> grayscale.json:183 -/ui/theme-defs/grayscale/status-styles/subtitle/color -> grayscale.json:181 -/ui/theme-defs/grayscale/status-styles/suggestion/color -> grayscale.json:223 -/ui/theme-defs/grayscale/status-styles/text/background-color -> grayscale.json:196 -/ui/theme-defs/grayscale/status-styles/text/color -> grayscale.json:195 -/ui/theme-defs/grayscale/status-styles/title-hotkey/background-color -> grayscale.json:187 -/ui/theme-defs/grayscale/status-styles/title-hotkey/color -> grayscale.json:186 -/ui/theme-defs/grayscale/status-styles/title-hotkey/underline -> grayscale.json:188 -/ui/theme-defs/grayscale/status-styles/title/background-color -> grayscale.json:177 -/ui/theme-defs/grayscale/status-styles/title/bold -> grayscale.json:178 -/ui/theme-defs/grayscale/status-styles/title/color -> grayscale.json:176 -/ui/theme-defs/grayscale/status-styles/warn/background-color -> grayscale.json:200 -/ui/theme-defs/grayscale/status-styles/warn/color -> grayscale.json:199 +/ui/theme-defs/grayscale/log-level-styles/critical/color -> grayscale.json:235 +/ui/theme-defs/grayscale/log-level-styles/error/color -> grayscale.json:232 +/ui/theme-defs/grayscale/log-level-styles/fatal/color -> grayscale.json:238 +/ui/theme-defs/grayscale/log-level-styles/warning/color -> grayscale.json:229 +/ui/theme-defs/grayscale/status-styles/active/background-color -> grayscale.json:209 +/ui/theme-defs/grayscale/status-styles/active/color -> grayscale.json:208 +/ui/theme-defs/grayscale/status-styles/alert/background-color -> grayscale.json:205 +/ui/theme-defs/grayscale/status-styles/alert/color -> grayscale.json:204 +/ui/theme-defs/grayscale/status-styles/disabled-title/background-color -> grayscale.json:173 +/ui/theme-defs/grayscale/status-styles/disabled-title/bold -> grayscale.json:174 +/ui/theme-defs/grayscale/status-styles/disabled-title/color -> grayscale.json:172 +/ui/theme-defs/grayscale/status-styles/hotkey/color -> grayscale.json:192 +/ui/theme-defs/grayscale/status-styles/hotkey/underline -> grayscale.json:193 +/ui/theme-defs/grayscale/status-styles/inactive-alert/background-color -> grayscale.json:221 +/ui/theme-defs/grayscale/status-styles/inactive-alert/color -> grayscale.json:220 +/ui/theme-defs/grayscale/status-styles/inactive/background-color -> grayscale.json:217 +/ui/theme-defs/grayscale/status-styles/inactive/color -> grayscale.json:216 +/ui/theme-defs/grayscale/status-styles/info/background-color -> grayscale.json:213 +/ui/theme-defs/grayscale/status-styles/info/color -> grayscale.json:212 +/ui/theme-defs/grayscale/status-styles/subtitle/background-color -> grayscale.json:183 +/ui/theme-defs/grayscale/status-styles/subtitle/bold -> grayscale.json:184 +/ui/theme-defs/grayscale/status-styles/subtitle/color -> grayscale.json:182 +/ui/theme-defs/grayscale/status-styles/suggestion/color -> grayscale.json:224 +/ui/theme-defs/grayscale/status-styles/text/background-color -> grayscale.json:197 +/ui/theme-defs/grayscale/status-styles/text/color -> grayscale.json:196 +/ui/theme-defs/grayscale/status-styles/title-hotkey/background-color -> grayscale.json:188 +/ui/theme-defs/grayscale/status-styles/title-hotkey/color -> grayscale.json:187 +/ui/theme-defs/grayscale/status-styles/title-hotkey/underline -> grayscale.json:189 +/ui/theme-defs/grayscale/status-styles/title/background-color -> grayscale.json:178 +/ui/theme-defs/grayscale/status-styles/title/bold -> grayscale.json:179 +/ui/theme-defs/grayscale/status-styles/title/color -> grayscale.json:177 +/ui/theme-defs/grayscale/status-styles/warn/background-color -> grayscale.json:201 +/ui/theme-defs/grayscale/status-styles/warn/color -> grayscale.json:200 /ui/theme-defs/grayscale/styles/adjusted-time/color -> grayscale.json:61 /ui/theme-defs/grayscale/styles/alt-text/bold -> grayscale.json:28 +/ui/theme-defs/grayscale/styles/breadcrumb/bold -> grayscale.json:120 /ui/theme-defs/grayscale/styles/breadcrumb/color -> grayscale.json:119 /ui/theme-defs/grayscale/styles/cursor-line/background-color -> grayscale.json:52 /ui/theme-defs/grayscale/styles/cursor-line/bold -> grayscale.json:53 @@ -603,10 +608,10 @@ /ui/theme-defs/grayscale/styles/file-offset/color -> grayscale.json:70 /ui/theme-defs/grayscale/styles/focused/background-color -> grayscale.json:77 /ui/theme-defs/grayscale/styles/focused/color -> grayscale.json:76 -/ui/theme-defs/grayscale/styles/footnote-border/background-color -> grayscale.json:136 -/ui/theme-defs/grayscale/styles/footnote-border/color -> grayscale.json:135 -/ui/theme-defs/grayscale/styles/footnote-text/background-color -> grayscale.json:140 -/ui/theme-defs/grayscale/styles/footnote-text/color -> grayscale.json:139 +/ui/theme-defs/grayscale/styles/footnote-border/background-color -> grayscale.json:137 +/ui/theme-defs/grayscale/styles/footnote-border/color -> grayscale.json:136 +/ui/theme-defs/grayscale/styles/footnote-text/background-color -> grayscale.json:141 +/ui/theme-defs/grayscale/styles/footnote-text/color -> grayscale.json:140 /ui/theme-defs/grayscale/styles/h1/underline -> grayscale.json:92 /ui/theme-defs/grayscale/styles/h2/underline -> grayscale.json:95 /ui/theme-defs/grayscale/styles/h3/underline -> grayscale.json:98 @@ -620,7 +625,7 @@ /ui/theme-defs/grayscale/styles/identifier/background-color -> grayscale.json:19 /ui/theme-defs/grayscale/styles/identifier/bold -> grayscale.json:21 /ui/theme-defs/grayscale/styles/identifier/color -> grayscale.json:20 -/ui/theme-defs/grayscale/styles/indent-guide/color -> grayscale.json:146 +/ui/theme-defs/grayscale/styles/indent-guide/color -> grayscale.json:147 /ui/theme-defs/grayscale/styles/info/bold -> grayscale.json:36 /ui/theme-defs/grayscale/styles/info/color -> grayscale.json:35 /ui/theme-defs/grayscale/styles/invalid-msg/color -> grayscale.json:73 @@ -630,25 +635,25 @@ /ui/theme-defs/grayscale/styles/ok/color -> grayscale.json:31 /ui/theme-defs/grayscale/styles/popup/background-color -> grayscale.json:85 /ui/theme-defs/grayscale/styles/popup/color -> grayscale.json:84 -/ui/theme-defs/grayscale/styles/quote-border/background-color -> grayscale.json:129 -/ui/theme-defs/grayscale/styles/quote-border/color -> grayscale.json:128 -/ui/theme-defs/grayscale/styles/quoted-text/background-color -> grayscale.json:132 +/ui/theme-defs/grayscale/styles/quote-border/background-color -> grayscale.json:130 +/ui/theme-defs/grayscale/styles/quote-border/color -> grayscale.json:129 +/ui/theme-defs/grayscale/styles/quoted-text/background-color -> grayscale.json:133 /ui/theme-defs/grayscale/styles/scrollbar/background-color -> grayscale.json:89 /ui/theme-defs/grayscale/styles/scrollbar/color -> grayscale.json:88 /ui/theme-defs/grayscale/styles/skewed-time/color -> grayscale.json:64 -/ui/theme-defs/grayscale/styles/snippet-border/color -> grayscale.json:143 -/ui/theme-defs/grayscale/styles/table-border/color -> grayscale.json:122 -/ui/theme-defs/grayscale/styles/table-header/bold -> grayscale.json:125 +/ui/theme-defs/grayscale/styles/snippet-border/color -> grayscale.json:144 +/ui/theme-defs/grayscale/styles/table-border/color -> grayscale.json:123 +/ui/theme-defs/grayscale/styles/table-header/bold -> grayscale.json:126 /ui/theme-defs/grayscale/styles/text/background-color -> grayscale.json:25 /ui/theme-defs/grayscale/styles/text/color -> grayscale.json:24 /ui/theme-defs/grayscale/styles/warning/bold -> grayscale.json:44 /ui/theme-defs/grayscale/styles/warning/color -> grayscale.json:43 -/ui/theme-defs/grayscale/syntax-styles/ascii-control/color -> grayscale.json:160 -/ui/theme-defs/grayscale/syntax-styles/comment/color -> grayscale.json:151 -/ui/theme-defs/grayscale/syntax-styles/doc-directive/color -> grayscale.json:154 -/ui/theme-defs/grayscale/syntax-styles/non-ascii/color -> grayscale.json:163 -/ui/theme-defs/grayscale/syntax-styles/null/color -> grayscale.json:157 -/ui/theme-defs/grayscale/syntax-styles/number/bold -> grayscale.json:166 +/ui/theme-defs/grayscale/syntax-styles/ascii-control/color -> grayscale.json:161 +/ui/theme-defs/grayscale/syntax-styles/comment/color -> grayscale.json:152 +/ui/theme-defs/grayscale/syntax-styles/doc-directive/color -> grayscale.json:155 +/ui/theme-defs/grayscale/syntax-styles/non-ascii/color -> grayscale.json:164 +/ui/theme-defs/grayscale/syntax-styles/null/color -> grayscale.json:158 +/ui/theme-defs/grayscale/syntax-styles/number/bold -> grayscale.json:167 /ui/theme-defs/grayscale/vars/black -> grayscale.json:7 /ui/theme-defs/grayscale/vars/blue -> grayscale.json:11 /ui/theme-defs/grayscale/vars/cyan -> grayscale.json:13 @@ -787,42 +792,43 @@ /ui/theme-defs/monocai/vars/semantic_highlight_color -> monocai.json:16 /ui/theme-defs/monocai/vars/white -> monocai.json:14 /ui/theme-defs/monocai/vars/yellow -> monocai.json:10 -/ui/theme-defs/night-owl/log-level-styles/critical/color -> night-owl.json:295 -/ui/theme-defs/night-owl/log-level-styles/error/color -> night-owl.json:292 -/ui/theme-defs/night-owl/log-level-styles/fatal/color -> night-owl.json:298 -/ui/theme-defs/night-owl/log-level-styles/warning/color -> night-owl.json:289 -/ui/theme-defs/night-owl/status-styles/active/background-color -> night-owl.json:262 -/ui/theme-defs/night-owl/status-styles/active/color -> night-owl.json:261 -/ui/theme-defs/night-owl/status-styles/alert/background-color -> night-owl.json:258 -/ui/theme-defs/night-owl/status-styles/alert/color -> night-owl.json:257 -/ui/theme-defs/night-owl/status-styles/disabled-title/background-color -> night-owl.json:232 -/ui/theme-defs/night-owl/status-styles/disabled-title/bold -> night-owl.json:233 -/ui/theme-defs/night-owl/status-styles/disabled-title/color -> night-owl.json:231 -/ui/theme-defs/night-owl/status-styles/hotkey/bold -> night-owl.json:274 -/ui/theme-defs/night-owl/status-styles/hotkey/color -> night-owl.json:273 -/ui/theme-defs/night-owl/status-styles/hotkey/underline -> night-owl.json:275 -/ui/theme-defs/night-owl/status-styles/inactive-alert/background-color -> night-owl.json:270 -/ui/theme-defs/night-owl/status-styles/inactive-alert/color -> night-owl.json:269 -/ui/theme-defs/night-owl/status-styles/inactive/background-color -> night-owl.json:266 -/ui/theme-defs/night-owl/status-styles/inactive/color -> night-owl.json:265 -/ui/theme-defs/night-owl/status-styles/info/background-color -> night-owl.json:246 -/ui/theme-defs/night-owl/status-styles/info/color -> night-owl.json:245 -/ui/theme-defs/night-owl/status-styles/subtitle/background-color -> night-owl.json:242 -/ui/theme-defs/night-owl/status-styles/subtitle/color -> night-owl.json:241 -/ui/theme-defs/night-owl/status-styles/suggestion/color -> night-owl.json:284 -/ui/theme-defs/night-owl/status-styles/text/background-color -> night-owl.json:250 -/ui/theme-defs/night-owl/status-styles/text/color -> night-owl.json:249 -/ui/theme-defs/night-owl/status-styles/title-hotkey/background-color -> night-owl.json:279 -/ui/theme-defs/night-owl/status-styles/title-hotkey/bold -> night-owl.json:280 -/ui/theme-defs/night-owl/status-styles/title-hotkey/color -> night-owl.json:278 -/ui/theme-defs/night-owl/status-styles/title-hotkey/underline -> night-owl.json:281 -/ui/theme-defs/night-owl/status-styles/title/background-color -> night-owl.json:237 -/ui/theme-defs/night-owl/status-styles/title/bold -> night-owl.json:238 -/ui/theme-defs/night-owl/status-styles/title/color -> night-owl.json:236 -/ui/theme-defs/night-owl/status-styles/warn/background-color -> night-owl.json:254 -/ui/theme-defs/night-owl/status-styles/warn/color -> night-owl.json:253 +/ui/theme-defs/night-owl/log-level-styles/critical/color -> night-owl.json:296 +/ui/theme-defs/night-owl/log-level-styles/error/color -> night-owl.json:293 +/ui/theme-defs/night-owl/log-level-styles/fatal/color -> night-owl.json:299 +/ui/theme-defs/night-owl/log-level-styles/warning/color -> night-owl.json:290 +/ui/theme-defs/night-owl/status-styles/active/background-color -> night-owl.json:263 +/ui/theme-defs/night-owl/status-styles/active/color -> night-owl.json:262 +/ui/theme-defs/night-owl/status-styles/alert/background-color -> night-owl.json:259 +/ui/theme-defs/night-owl/status-styles/alert/color -> night-owl.json:258 +/ui/theme-defs/night-owl/status-styles/disabled-title/background-color -> night-owl.json:233 +/ui/theme-defs/night-owl/status-styles/disabled-title/bold -> night-owl.json:234 +/ui/theme-defs/night-owl/status-styles/disabled-title/color -> night-owl.json:232 +/ui/theme-defs/night-owl/status-styles/hotkey/bold -> night-owl.json:275 +/ui/theme-defs/night-owl/status-styles/hotkey/color -> night-owl.json:274 +/ui/theme-defs/night-owl/status-styles/hotkey/underline -> night-owl.json:276 +/ui/theme-defs/night-owl/status-styles/inactive-alert/background-color -> night-owl.json:271 +/ui/theme-defs/night-owl/status-styles/inactive-alert/color -> night-owl.json:270 +/ui/theme-defs/night-owl/status-styles/inactive/background-color -> night-owl.json:267 +/ui/theme-defs/night-owl/status-styles/inactive/color -> night-owl.json:266 +/ui/theme-defs/night-owl/status-styles/info/background-color -> night-owl.json:247 +/ui/theme-defs/night-owl/status-styles/info/color -> night-owl.json:246 +/ui/theme-defs/night-owl/status-styles/subtitle/background-color -> night-owl.json:243 +/ui/theme-defs/night-owl/status-styles/subtitle/color -> night-owl.json:242 +/ui/theme-defs/night-owl/status-styles/suggestion/color -> night-owl.json:285 +/ui/theme-defs/night-owl/status-styles/text/background-color -> night-owl.json:251 +/ui/theme-defs/night-owl/status-styles/text/color -> night-owl.json:250 +/ui/theme-defs/night-owl/status-styles/title-hotkey/background-color -> night-owl.json:280 +/ui/theme-defs/night-owl/status-styles/title-hotkey/bold -> night-owl.json:281 +/ui/theme-defs/night-owl/status-styles/title-hotkey/color -> night-owl.json:279 +/ui/theme-defs/night-owl/status-styles/title-hotkey/underline -> night-owl.json:282 +/ui/theme-defs/night-owl/status-styles/title/background-color -> night-owl.json:238 +/ui/theme-defs/night-owl/status-styles/title/bold -> night-owl.json:239 +/ui/theme-defs/night-owl/status-styles/title/color -> night-owl.json:237 +/ui/theme-defs/night-owl/status-styles/warn/background-color -> night-owl.json:255 +/ui/theme-defs/night-owl/status-styles/warn/color -> night-owl.json:254 /ui/theme-defs/night-owl/styles/adjusted-time/color -> night-owl.json:60 /ui/theme-defs/night-owl/styles/alt-text/background-color -> night-owl.json:27 +/ui/theme-defs/night-owl/styles/breadcrumb/bold -> night-owl.json:119 /ui/theme-defs/night-owl/styles/breadcrumb/color -> night-owl.json:118 /ui/theme-defs/night-owl/styles/cursor-line/background-color -> night-owl.json:51 /ui/theme-defs/night-owl/styles/cursor-line/bold -> night-owl.json:52 @@ -837,10 +843,10 @@ /ui/theme-defs/night-owl/styles/file-offset/color -> night-owl.json:69 /ui/theme-defs/night-owl/styles/focused/background-color -> night-owl.json:76 /ui/theme-defs/night-owl/styles/focused/color -> night-owl.json:75 -/ui/theme-defs/night-owl/styles/footnote-border/background-color -> night-owl.json:135 -/ui/theme-defs/night-owl/styles/footnote-border/color -> night-owl.json:134 -/ui/theme-defs/night-owl/styles/footnote-text/background-color -> night-owl.json:139 -/ui/theme-defs/night-owl/styles/footnote-text/color -> night-owl.json:138 +/ui/theme-defs/night-owl/styles/footnote-border/background-color -> night-owl.json:136 +/ui/theme-defs/night-owl/styles/footnote-border/color -> night-owl.json:135 +/ui/theme-defs/night-owl/styles/footnote-text/background-color -> night-owl.json:140 +/ui/theme-defs/night-owl/styles/footnote-text/color -> night-owl.json:139 /ui/theme-defs/night-owl/styles/h1/underline -> night-owl.json:91 /ui/theme-defs/night-owl/styles/h2/underline -> night-owl.json:94 /ui/theme-defs/night-owl/styles/h3/underline -> night-owl.json:97 @@ -853,7 +859,7 @@ /ui/theme-defs/night-owl/styles/hyperlink/underline -> night-owl.json:112 /ui/theme-defs/night-owl/styles/identifier/background-color -> night-owl.json:19 /ui/theme-defs/night-owl/styles/identifier/color -> night-owl.json:20 -/ui/theme-defs/night-owl/styles/indent-guide/color -> night-owl.json:145 +/ui/theme-defs/night-owl/styles/indent-guide/color -> night-owl.json:146 /ui/theme-defs/night-owl/styles/info/bold -> night-owl.json:35 /ui/theme-defs/night-owl/styles/info/color -> night-owl.json:34 /ui/theme-defs/night-owl/styles/invalid-msg/color -> night-owl.json:72 @@ -863,48 +869,48 @@ /ui/theme-defs/night-owl/styles/ok/color -> night-owl.json:30 /ui/theme-defs/night-owl/styles/popup/background-color -> night-owl.json:84 /ui/theme-defs/night-owl/styles/popup/color -> night-owl.json:83 -/ui/theme-defs/night-owl/styles/quote-border/background-color -> night-owl.json:128 -/ui/theme-defs/night-owl/styles/quote-border/color -> night-owl.json:127 -/ui/theme-defs/night-owl/styles/quoted-text/background-color -> night-owl.json:131 +/ui/theme-defs/night-owl/styles/quote-border/background-color -> night-owl.json:129 +/ui/theme-defs/night-owl/styles/quote-border/color -> night-owl.json:128 +/ui/theme-defs/night-owl/styles/quoted-text/background-color -> night-owl.json:132 /ui/theme-defs/night-owl/styles/scrollbar/background-color -> night-owl.json:88 /ui/theme-defs/night-owl/styles/scrollbar/color -> night-owl.json:87 /ui/theme-defs/night-owl/styles/skewed-time/color -> night-owl.json:63 -/ui/theme-defs/night-owl/styles/snippet-border/color -> night-owl.json:142 -/ui/theme-defs/night-owl/styles/table-border/color -> night-owl.json:121 -/ui/theme-defs/night-owl/styles/table-header/bold -> night-owl.json:124 +/ui/theme-defs/night-owl/styles/snippet-border/color -> night-owl.json:143 +/ui/theme-defs/night-owl/styles/table-border/color -> night-owl.json:122 +/ui/theme-defs/night-owl/styles/table-header/bold -> night-owl.json:125 /ui/theme-defs/night-owl/styles/text/background-color -> night-owl.json:24 /ui/theme-defs/night-owl/styles/text/color -> night-owl.json:23 /ui/theme-defs/night-owl/styles/warning/bold -> night-owl.json:43 /ui/theme-defs/night-owl/styles/warning/color -> night-owl.json:42 -/ui/theme-defs/night-owl/syntax-styles/ascii-control/color -> night-owl.json:214 -/ui/theme-defs/night-owl/syntax-styles/code-border/background-color -> night-owl.json:159 -/ui/theme-defs/night-owl/syntax-styles/code-border/color -> night-owl.json:158 -/ui/theme-defs/night-owl/syntax-styles/comment/color -> night-owl.json:169 -/ui/theme-defs/night-owl/syntax-styles/diff-add/color -> night-owl.json:193 -/ui/theme-defs/night-owl/syntax-styles/diff-delete/color -> night-owl.json:190 -/ui/theme-defs/night-owl/syntax-styles/diff-section/color -> night-owl.json:196 -/ui/theme-defs/night-owl/syntax-styles/doc-directive/color -> night-owl.json:172 -/ui/theme-defs/night-owl/syntax-styles/file/color -> night-owl.json:208 -/ui/theme-defs/night-owl/syntax-styles/function/color -> night-owl.json:220 -/ui/theme-defs/night-owl/syntax-styles/inline-code/background-color -> night-owl.json:151 -/ui/theme-defs/night-owl/syntax-styles/inline-code/color -> night-owl.json:150 -/ui/theme-defs/night-owl/syntax-styles/keyword/color -> night-owl.json:162 -/ui/theme-defs/night-owl/syntax-styles/non-ascii/color -> night-owl.json:217 -/ui/theme-defs/night-owl/syntax-styles/null/color -> night-owl.json:211 -/ui/theme-defs/night-owl/syntax-styles/number/color -> night-owl.json:181 -/ui/theme-defs/night-owl/syntax-styles/quoted-code/background-color -> night-owl.json:155 -/ui/theme-defs/night-owl/syntax-styles/quoted-code/color -> night-owl.json:154 -/ui/theme-defs/night-owl/syntax-styles/re-repeat/color -> night-owl.json:187 -/ui/theme-defs/night-owl/syntax-styles/re-special/color -> night-owl.json:184 -/ui/theme-defs/night-owl/syntax-styles/separators-references-accessors/color -> night-owl.json:223 -/ui/theme-defs/night-owl/syntax-styles/spectrogram-high/background-color -> night-owl.json:205 -/ui/theme-defs/night-owl/syntax-styles/spectrogram-low/background-color -> night-owl.json:199 -/ui/theme-defs/night-owl/syntax-styles/spectrogram-medium/background-color -> night-owl.json:202 -/ui/theme-defs/night-owl/syntax-styles/string/bold -> night-owl.json:166 -/ui/theme-defs/night-owl/syntax-styles/string/color -> night-owl.json:165 -/ui/theme-defs/night-owl/syntax-styles/symbol/color -> night-owl.json:178 -/ui/theme-defs/night-owl/syntax-styles/type/color -> night-owl.json:226 -/ui/theme-defs/night-owl/syntax-styles/variable/color -> night-owl.json:175 +/ui/theme-defs/night-owl/syntax-styles/ascii-control/color -> night-owl.json:215 +/ui/theme-defs/night-owl/syntax-styles/code-border/background-color -> night-owl.json:160 +/ui/theme-defs/night-owl/syntax-styles/code-border/color -> night-owl.json:159 +/ui/theme-defs/night-owl/syntax-styles/comment/color -> night-owl.json:170 +/ui/theme-defs/night-owl/syntax-styles/diff-add/color -> night-owl.json:194 +/ui/theme-defs/night-owl/syntax-styles/diff-delete/color -> night-owl.json:191 +/ui/theme-defs/night-owl/syntax-styles/diff-section/color -> night-owl.json:197 +/ui/theme-defs/night-owl/syntax-styles/doc-directive/color -> night-owl.json:173 +/ui/theme-defs/night-owl/syntax-styles/file/color -> night-owl.json:209 +/ui/theme-defs/night-owl/syntax-styles/function/color -> night-owl.json:221 +/ui/theme-defs/night-owl/syntax-styles/inline-code/background-color -> night-owl.json:152 +/ui/theme-defs/night-owl/syntax-styles/inline-code/color -> night-owl.json:151 +/ui/theme-defs/night-owl/syntax-styles/keyword/color -> night-owl.json:163 +/ui/theme-defs/night-owl/syntax-styles/non-ascii/color -> night-owl.json:218 +/ui/theme-defs/night-owl/syntax-styles/null/color -> night-owl.json:212 +/ui/theme-defs/night-owl/syntax-styles/number/color -> night-owl.json:182 +/ui/theme-defs/night-owl/syntax-styles/quoted-code/background-color -> night-owl.json:156 +/ui/theme-defs/night-owl/syntax-styles/quoted-code/color -> night-owl.json:155 +/ui/theme-defs/night-owl/syntax-styles/re-repeat/color -> night-owl.json:188 +/ui/theme-defs/night-owl/syntax-styles/re-special/color -> night-owl.json:185 +/ui/theme-defs/night-owl/syntax-styles/separators-references-accessors/color -> night-owl.json:224 +/ui/theme-defs/night-owl/syntax-styles/spectrogram-high/background-color -> night-owl.json:206 +/ui/theme-defs/night-owl/syntax-styles/spectrogram-low/background-color -> night-owl.json:200 +/ui/theme-defs/night-owl/syntax-styles/spectrogram-medium/background-color -> night-owl.json:203 +/ui/theme-defs/night-owl/syntax-styles/string/bold -> night-owl.json:167 +/ui/theme-defs/night-owl/syntax-styles/string/color -> night-owl.json:166 +/ui/theme-defs/night-owl/syntax-styles/symbol/color -> night-owl.json:179 +/ui/theme-defs/night-owl/syntax-styles/type/color -> night-owl.json:227 +/ui/theme-defs/night-owl/syntax-styles/variable/color -> night-owl.json:176 /ui/theme-defs/night-owl/vars/black -> night-owl.json:7 /ui/theme-defs/night-owl/vars/blue -> night-owl.json:11 /ui/theme-defs/night-owl/vars/cyan -> night-owl.json:13 @@ -914,41 +920,42 @@ /ui/theme-defs/night-owl/vars/semantic_highlight_color -> night-owl.json:15 /ui/theme-defs/night-owl/vars/white -> night-owl.json:14 /ui/theme-defs/night-owl/vars/yellow -> night-owl.json:10 -/ui/theme-defs/solarized-dark/log-level-styles/critical/color -> solarized-dark.json:303 -/ui/theme-defs/solarized-dark/log-level-styles/error/color -> solarized-dark.json:300 -/ui/theme-defs/solarized-dark/log-level-styles/fatal/color -> solarized-dark.json:306 -/ui/theme-defs/solarized-dark/log-level-styles/warning/color -> solarized-dark.json:297 -/ui/theme-defs/solarized-dark/status-styles/active/background-color -> solarized-dark.json:268 -/ui/theme-defs/solarized-dark/status-styles/active/color -> solarized-dark.json:267 -/ui/theme-defs/solarized-dark/status-styles/alert/background-color -> solarized-dark.json:264 -/ui/theme-defs/solarized-dark/status-styles/alert/color -> solarized-dark.json:263 -/ui/theme-defs/solarized-dark/status-styles/disabled-title/background-color -> solarized-dark.json:241 -/ui/theme-defs/solarized-dark/status-styles/disabled-title/bold -> solarized-dark.json:242 -/ui/theme-defs/solarized-dark/status-styles/disabled-title/color -> solarized-dark.json:240 -/ui/theme-defs/solarized-dark/status-styles/hotkey/color -> solarized-dark.json:280 -/ui/theme-defs/solarized-dark/status-styles/hotkey/underline -> solarized-dark.json:281 -/ui/theme-defs/solarized-dark/status-styles/inactive-alert/background-color -> solarized-dark.json:289 -/ui/theme-defs/solarized-dark/status-styles/inactive-alert/color -> solarized-dark.json:288 -/ui/theme-defs/solarized-dark/status-styles/inactive/background-color -> solarized-dark.json:285 -/ui/theme-defs/solarized-dark/status-styles/inactive/color -> solarized-dark.json:284 -/ui/theme-defs/solarized-dark/status-styles/info/background-color -> solarized-dark.json:272 -/ui/theme-defs/solarized-dark/status-styles/info/color -> solarized-dark.json:271 -/ui/theme-defs/solarized-dark/status-styles/subtitle/background-color -> solarized-dark.json:251 -/ui/theme-defs/solarized-dark/status-styles/subtitle/bold -> solarized-dark.json:252 -/ui/theme-defs/solarized-dark/status-styles/subtitle/color -> solarized-dark.json:250 -/ui/theme-defs/solarized-dark/status-styles/suggestion/color -> solarized-dark.json:292 -/ui/theme-defs/solarized-dark/status-styles/text/background-color -> solarized-dark.json:256 -/ui/theme-defs/solarized-dark/status-styles/text/color -> solarized-dark.json:255 -/ui/theme-defs/solarized-dark/status-styles/title-hotkey/background-color -> solarized-dark.json:276 -/ui/theme-defs/solarized-dark/status-styles/title-hotkey/color -> solarized-dark.json:275 -/ui/theme-defs/solarized-dark/status-styles/title-hotkey/underline -> solarized-dark.json:277 -/ui/theme-defs/solarized-dark/status-styles/title/background-color -> solarized-dark.json:246 -/ui/theme-defs/solarized-dark/status-styles/title/bold -> solarized-dark.json:247 -/ui/theme-defs/solarized-dark/status-styles/title/color -> solarized-dark.json:245 -/ui/theme-defs/solarized-dark/status-styles/warn/background-color -> solarized-dark.json:260 -/ui/theme-defs/solarized-dark/status-styles/warn/color -> solarized-dark.json:259 +/ui/theme-defs/solarized-dark/log-level-styles/critical/color -> solarized-dark.json:304 +/ui/theme-defs/solarized-dark/log-level-styles/error/color -> solarized-dark.json:301 +/ui/theme-defs/solarized-dark/log-level-styles/fatal/color -> solarized-dark.json:307 +/ui/theme-defs/solarized-dark/log-level-styles/warning/color -> solarized-dark.json:298 +/ui/theme-defs/solarized-dark/status-styles/active/background-color -> solarized-dark.json:269 +/ui/theme-defs/solarized-dark/status-styles/active/color -> solarized-dark.json:268 +/ui/theme-defs/solarized-dark/status-styles/alert/background-color -> solarized-dark.json:265 +/ui/theme-defs/solarized-dark/status-styles/alert/color -> solarized-dark.json:264 +/ui/theme-defs/solarized-dark/status-styles/disabled-title/background-color -> solarized-dark.json:242 +/ui/theme-defs/solarized-dark/status-styles/disabled-title/bold -> solarized-dark.json:243 +/ui/theme-defs/solarized-dark/status-styles/disabled-title/color -> solarized-dark.json:241 +/ui/theme-defs/solarized-dark/status-styles/hotkey/color -> solarized-dark.json:281 +/ui/theme-defs/solarized-dark/status-styles/hotkey/underline -> solarized-dark.json:282 +/ui/theme-defs/solarized-dark/status-styles/inactive-alert/background-color -> solarized-dark.json:290 +/ui/theme-defs/solarized-dark/status-styles/inactive-alert/color -> solarized-dark.json:289 +/ui/theme-defs/solarized-dark/status-styles/inactive/background-color -> solarized-dark.json:286 +/ui/theme-defs/solarized-dark/status-styles/inactive/color -> solarized-dark.json:285 +/ui/theme-defs/solarized-dark/status-styles/info/background-color -> solarized-dark.json:273 +/ui/theme-defs/solarized-dark/status-styles/info/color -> solarized-dark.json:272 +/ui/theme-defs/solarized-dark/status-styles/subtitle/background-color -> solarized-dark.json:252 +/ui/theme-defs/solarized-dark/status-styles/subtitle/bold -> solarized-dark.json:253 +/ui/theme-defs/solarized-dark/status-styles/subtitle/color -> solarized-dark.json:251 +/ui/theme-defs/solarized-dark/status-styles/suggestion/color -> solarized-dark.json:293 +/ui/theme-defs/solarized-dark/status-styles/text/background-color -> solarized-dark.json:257 +/ui/theme-defs/solarized-dark/status-styles/text/color -> solarized-dark.json:256 +/ui/theme-defs/solarized-dark/status-styles/title-hotkey/background-color -> solarized-dark.json:277 +/ui/theme-defs/solarized-dark/status-styles/title-hotkey/color -> solarized-dark.json:276 +/ui/theme-defs/solarized-dark/status-styles/title-hotkey/underline -> solarized-dark.json:278 +/ui/theme-defs/solarized-dark/status-styles/title/background-color -> solarized-dark.json:247 +/ui/theme-defs/solarized-dark/status-styles/title/bold -> solarized-dark.json:248 +/ui/theme-defs/solarized-dark/status-styles/title/color -> solarized-dark.json:246 +/ui/theme-defs/solarized-dark/status-styles/warn/background-color -> solarized-dark.json:261 +/ui/theme-defs/solarized-dark/status-styles/warn/color -> solarized-dark.json:260 /ui/theme-defs/solarized-dark/styles/adjusted-time/color -> solarized-dark.json:69 /ui/theme-defs/solarized-dark/styles/alt-text/background-color -> solarized-dark.json:36 +/ui/theme-defs/solarized-dark/styles/breadcrumb/bold -> solarized-dark.json:128 /ui/theme-defs/solarized-dark/styles/breadcrumb/color -> solarized-dark.json:127 /ui/theme-defs/solarized-dark/styles/cursor-line/background-color -> solarized-dark.json:60 /ui/theme-defs/solarized-dark/styles/cursor-line/bold -> solarized-dark.json:61 @@ -963,10 +970,10 @@ /ui/theme-defs/solarized-dark/styles/file-offset/color -> solarized-dark.json:78 /ui/theme-defs/solarized-dark/styles/focused/background-color -> solarized-dark.json:93 /ui/theme-defs/solarized-dark/styles/focused/color -> solarized-dark.json:92 -/ui/theme-defs/solarized-dark/styles/footnote-border/background-color -> solarized-dark.json:144 -/ui/theme-defs/solarized-dark/styles/footnote-border/color -> solarized-dark.json:143 -/ui/theme-defs/solarized-dark/styles/footnote-text/background-color -> solarized-dark.json:148 -/ui/theme-defs/solarized-dark/styles/footnote-text/color -> solarized-dark.json:147 +/ui/theme-defs/solarized-dark/styles/footnote-border/background-color -> solarized-dark.json:145 +/ui/theme-defs/solarized-dark/styles/footnote-border/color -> solarized-dark.json:144 +/ui/theme-defs/solarized-dark/styles/footnote-text/background-color -> solarized-dark.json:149 +/ui/theme-defs/solarized-dark/styles/footnote-text/color -> solarized-dark.json:148 /ui/theme-defs/solarized-dark/styles/h1/underline -> solarized-dark.json:100 /ui/theme-defs/solarized-dark/styles/h2/underline -> solarized-dark.json:103 /ui/theme-defs/solarized-dark/styles/h3/underline -> solarized-dark.json:106 @@ -979,7 +986,7 @@ /ui/theme-defs/solarized-dark/styles/hyperlink/underline -> solarized-dark.json:121 /ui/theme-defs/solarized-dark/styles/identifier/background-color -> solarized-dark.json:28 /ui/theme-defs/solarized-dark/styles/identifier/color -> solarized-dark.json:29 -/ui/theme-defs/solarized-dark/styles/indent-guide/color -> solarized-dark.json:154 +/ui/theme-defs/solarized-dark/styles/indent-guide/color -> solarized-dark.json:155 /ui/theme-defs/solarized-dark/styles/info/bold -> solarized-dark.json:44 /ui/theme-defs/solarized-dark/styles/info/color -> solarized-dark.json:43 /ui/theme-defs/solarized-dark/styles/invalid-msg/color -> solarized-dark.json:81 @@ -989,48 +996,48 @@ /ui/theme-defs/solarized-dark/styles/ok/color -> solarized-dark.json:39 /ui/theme-defs/solarized-dark/styles/popup/background-color -> solarized-dark.json:85 /ui/theme-defs/solarized-dark/styles/popup/color -> solarized-dark.json:84 -/ui/theme-defs/solarized-dark/styles/quote-border/background-color -> solarized-dark.json:137 -/ui/theme-defs/solarized-dark/styles/quote-border/color -> solarized-dark.json:136 -/ui/theme-defs/solarized-dark/styles/quoted-text/background-color -> solarized-dark.json:140 +/ui/theme-defs/solarized-dark/styles/quote-border/background-color -> solarized-dark.json:138 +/ui/theme-defs/solarized-dark/styles/quote-border/color -> solarized-dark.json:137 +/ui/theme-defs/solarized-dark/styles/quoted-text/background-color -> solarized-dark.json:141 /ui/theme-defs/solarized-dark/styles/scrollbar/background-color -> solarized-dark.json:89 /ui/theme-defs/solarized-dark/styles/scrollbar/color -> solarized-dark.json:88 /ui/theme-defs/solarized-dark/styles/skewed-time/color -> solarized-dark.json:72 -/ui/theme-defs/solarized-dark/styles/snippet-border/color -> solarized-dark.json:151 -/ui/theme-defs/solarized-dark/styles/table-border/color -> solarized-dark.json:130 -/ui/theme-defs/solarized-dark/styles/table-header/bold -> solarized-dark.json:133 +/ui/theme-defs/solarized-dark/styles/snippet-border/color -> solarized-dark.json:152 +/ui/theme-defs/solarized-dark/styles/table-border/color -> solarized-dark.json:131 +/ui/theme-defs/solarized-dark/styles/table-header/bold -> solarized-dark.json:134 /ui/theme-defs/solarized-dark/styles/text/background-color -> solarized-dark.json:33 /ui/theme-defs/solarized-dark/styles/text/color -> solarized-dark.json:32 /ui/theme-defs/solarized-dark/styles/warning/bold -> solarized-dark.json:52 /ui/theme-defs/solarized-dark/styles/warning/color -> solarized-dark.json:51 -/ui/theme-defs/solarized-dark/syntax-styles/ascii-control/color -> solarized-dark.json:220 -/ui/theme-defs/solarized-dark/syntax-styles/code-border/background-color -> solarized-dark.json:168 -/ui/theme-defs/solarized-dark/syntax-styles/code-border/color -> solarized-dark.json:167 -/ui/theme-defs/solarized-dark/syntax-styles/comment/color -> solarized-dark.json:178 -/ui/theme-defs/solarized-dark/syntax-styles/diff-add/color -> solarized-dark.json:199 -/ui/theme-defs/solarized-dark/syntax-styles/diff-delete/color -> solarized-dark.json:196 -/ui/theme-defs/solarized-dark/syntax-styles/diff-section/color -> solarized-dark.json:202 -/ui/theme-defs/solarized-dark/syntax-styles/doc-directive/color -> solarized-dark.json:181 -/ui/theme-defs/solarized-dark/syntax-styles/file/color -> solarized-dark.json:214 -/ui/theme-defs/solarized-dark/syntax-styles/function/color -> solarized-dark.json:229 -/ui/theme-defs/solarized-dark/syntax-styles/inline-code/background-color -> solarized-dark.json:160 -/ui/theme-defs/solarized-dark/syntax-styles/inline-code/color -> solarized-dark.json:159 -/ui/theme-defs/solarized-dark/syntax-styles/keyword/color -> solarized-dark.json:171 -/ui/theme-defs/solarized-dark/syntax-styles/non-ascii/color -> solarized-dark.json:223 -/ui/theme-defs/solarized-dark/syntax-styles/null/color -> solarized-dark.json:217 -/ui/theme-defs/solarized-dark/syntax-styles/number/bold -> solarized-dark.json:226 -/ui/theme-defs/solarized-dark/syntax-styles/quoted-code/background-color -> solarized-dark.json:164 -/ui/theme-defs/solarized-dark/syntax-styles/quoted-code/color -> solarized-dark.json:163 -/ui/theme-defs/solarized-dark/syntax-styles/re-repeat/color -> solarized-dark.json:193 -/ui/theme-defs/solarized-dark/syntax-styles/re-special/color -> solarized-dark.json:190 -/ui/theme-defs/solarized-dark/syntax-styles/separators-references-accessors/color -> solarized-dark.json:232 -/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-high/background-color -> solarized-dark.json:211 -/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-low/background-color -> solarized-dark.json:205 -/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-medium/background-color -> solarized-dark.json:208 -/ui/theme-defs/solarized-dark/syntax-styles/string/bold -> solarized-dark.json:175 -/ui/theme-defs/solarized-dark/syntax-styles/string/color -> solarized-dark.json:174 -/ui/theme-defs/solarized-dark/syntax-styles/symbol/color -> solarized-dark.json:187 -/ui/theme-defs/solarized-dark/syntax-styles/type/color -> solarized-dark.json:235 -/ui/theme-defs/solarized-dark/syntax-styles/variable/color -> solarized-dark.json:184 +/ui/theme-defs/solarized-dark/syntax-styles/ascii-control/color -> solarized-dark.json:221 +/ui/theme-defs/solarized-dark/syntax-styles/code-border/background-color -> solarized-dark.json:169 +/ui/theme-defs/solarized-dark/syntax-styles/code-border/color -> solarized-dark.json:168 +/ui/theme-defs/solarized-dark/syntax-styles/comment/color -> solarized-dark.json:179 +/ui/theme-defs/solarized-dark/syntax-styles/diff-add/color -> solarized-dark.json:200 +/ui/theme-defs/solarized-dark/syntax-styles/diff-delete/color -> solarized-dark.json:197 +/ui/theme-defs/solarized-dark/syntax-styles/diff-section/color -> solarized-dark.json:203 +/ui/theme-defs/solarized-dark/syntax-styles/doc-directive/color -> solarized-dark.json:182 +/ui/theme-defs/solarized-dark/syntax-styles/file/color -> solarized-dark.json:215 +/ui/theme-defs/solarized-dark/syntax-styles/function/color -> solarized-dark.json:230 +/ui/theme-defs/solarized-dark/syntax-styles/inline-code/background-color -> solarized-dark.json:161 +/ui/theme-defs/solarized-dark/syntax-styles/inline-code/color -> solarized-dark.json:160 +/ui/theme-defs/solarized-dark/syntax-styles/keyword/color -> solarized-dark.json:172 +/ui/theme-defs/solarized-dark/syntax-styles/non-ascii/color -> solarized-dark.json:224 +/ui/theme-defs/solarized-dark/syntax-styles/null/color -> solarized-dark.json:218 +/ui/theme-defs/solarized-dark/syntax-styles/number/bold -> solarized-dark.json:227 +/ui/theme-defs/solarized-dark/syntax-styles/quoted-code/background-color -> solarized-dark.json:165 +/ui/theme-defs/solarized-dark/syntax-styles/quoted-code/color -> solarized-dark.json:164 +/ui/theme-defs/solarized-dark/syntax-styles/re-repeat/color -> solarized-dark.json:194 +/ui/theme-defs/solarized-dark/syntax-styles/re-special/color -> solarized-dark.json:191 +/ui/theme-defs/solarized-dark/syntax-styles/separators-references-accessors/color -> solarized-dark.json:233 +/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-high/background-color -> solarized-dark.json:212 +/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-low/background-color -> solarized-dark.json:206 +/ui/theme-defs/solarized-dark/syntax-styles/spectrogram-medium/background-color -> solarized-dark.json:209 +/ui/theme-defs/solarized-dark/syntax-styles/string/bold -> solarized-dark.json:176 +/ui/theme-defs/solarized-dark/syntax-styles/string/color -> solarized-dark.json:175 +/ui/theme-defs/solarized-dark/syntax-styles/symbol/color -> solarized-dark.json:188 +/ui/theme-defs/solarized-dark/syntax-styles/type/color -> solarized-dark.json:236 +/ui/theme-defs/solarized-dark/syntax-styles/variable/color -> solarized-dark.json:185 /ui/theme-defs/solarized-dark/vars/base0 -> solarized-dark.json:11 /ui/theme-defs/solarized-dark/vars/base00 -> solarized-dark.json:10 /ui/theme-defs/solarized-dark/vars/base01 -> solarized-dark.json:9 @@ -1049,83 +1056,102 @@ /ui/theme-defs/solarized-dark/vars/semantic_highlight_color -> solarized-dark.json:24 /ui/theme-defs/solarized-dark/vars/violet -> solarized-dark.json:20 /ui/theme-defs/solarized-dark/vars/yellow -> solarized-dark.json:16 -/ui/theme-defs/solarized-light/log-level-styles/critical/color -> solarized-light.json:209 -/ui/theme-defs/solarized-light/log-level-styles/error/color -> solarized-light.json:206 -/ui/theme-defs/solarized-light/log-level-styles/fatal/color -> solarized-light.json:212 -/ui/theme-defs/solarized-light/log-level-styles/warning/color -> solarized-light.json:203 -/ui/theme-defs/solarized-light/status-styles/active/background-color -> solarized-light.json:183 -/ui/theme-defs/solarized-light/status-styles/active/color -> solarized-light.json:182 -/ui/theme-defs/solarized-light/status-styles/alert/background-color -> solarized-light.json:179 -/ui/theme-defs/solarized-light/status-styles/alert/color -> solarized-light.json:178 -/ui/theme-defs/solarized-light/status-styles/inactive-alert/background-color -> solarized-light.json:195 -/ui/theme-defs/solarized-light/status-styles/inactive-alert/color -> solarized-light.json:194 -/ui/theme-defs/solarized-light/status-styles/inactive/background-color -> solarized-light.json:191 -/ui/theme-defs/solarized-light/status-styles/inactive/color -> solarized-light.json:190 -/ui/theme-defs/solarized-light/status-styles/info/background-color -> solarized-light.json:187 -/ui/theme-defs/solarized-light/status-styles/info/color -> solarized-light.json:186 -/ui/theme-defs/solarized-light/status-styles/subtitle/background-color -> solarized-light.json:166 -/ui/theme-defs/solarized-light/status-styles/subtitle/bold -> solarized-light.json:167 -/ui/theme-defs/solarized-light/status-styles/subtitle/color -> solarized-light.json:165 -/ui/theme-defs/solarized-light/status-styles/suggestion/color -> solarized-light.json:198 -/ui/theme-defs/solarized-light/status-styles/text/background-color -> solarized-light.json:171 -/ui/theme-defs/solarized-light/status-styles/text/color -> solarized-light.json:170 -/ui/theme-defs/solarized-light/status-styles/title/background-color -> solarized-light.json:161 -/ui/theme-defs/solarized-light/status-styles/title/bold -> solarized-light.json:162 -/ui/theme-defs/solarized-light/status-styles/title/color -> solarized-light.json:160 -/ui/theme-defs/solarized-light/status-styles/warn/background-color -> solarized-light.json:175 -/ui/theme-defs/solarized-light/status-styles/warn/color -> solarized-light.json:174 -/ui/theme-defs/solarized-light/styles/adjusted-time/color -> solarized-light.json:61 -/ui/theme-defs/solarized-light/styles/alt-text/background-color -> solarized-light.json:36 -/ui/theme-defs/solarized-light/styles/cursor-line/background-color -> solarized-light.json:56 -/ui/theme-defs/solarized-light/styles/cursor-line/bold -> solarized-light.json:57 -/ui/theme-defs/solarized-light/styles/cursor-line/color -> solarized-light.json:55 -/ui/theme-defs/solarized-light/styles/cursor-line/underline -> solarized-light.json:58 -/ui/theme-defs/solarized-light/styles/disabled-focused/background-color -> solarized-light.json:86 -/ui/theme-defs/solarized-light/styles/disabled-focused/color -> solarized-light.json:85 -/ui/theme-defs/solarized-light/styles/error/bold -> solarized-light.json:44 -/ui/theme-defs/solarized-light/styles/error/color -> solarized-light.json:43 -/ui/theme-defs/solarized-light/styles/focused/background-color -> solarized-light.json:82 -/ui/theme-defs/solarized-light/styles/focused/color -> solarized-light.json:81 -/ui/theme-defs/solarized-light/styles/h1/underline -> solarized-light.json:89 -/ui/theme-defs/solarized-light/styles/h2/underline -> solarized-light.json:92 -/ui/theme-defs/solarized-light/styles/h3/underline -> solarized-light.json:95 -/ui/theme-defs/solarized-light/styles/h4/underline -> solarized-light.json:98 -/ui/theme-defs/solarized-light/styles/h5/underline -> solarized-light.json:101 -/ui/theme-defs/solarized-light/styles/h6/underline -> solarized-light.json:104 -/ui/theme-defs/solarized-light/styles/hidden/bold -> solarized-light.json:52 -/ui/theme-defs/solarized-light/styles/hidden/color -> solarized-light.json:51 -/ui/theme-defs/solarized-light/styles/identifier/background-color -> solarized-light.json:28 -/ui/theme-defs/solarized-light/styles/identifier/color -> solarized-light.json:29 -/ui/theme-defs/solarized-light/styles/indent-guide/color -> solarized-light.json:107 -/ui/theme-defs/solarized-light/styles/invalid-msg/color -> solarized-light.json:70 -/ui/theme-defs/solarized-light/styles/offset-time/color -> solarized-light.json:67 -/ui/theme-defs/solarized-light/styles/ok/bold -> solarized-light.json:40 -/ui/theme-defs/solarized-light/styles/ok/color -> solarized-light.json:39 -/ui/theme-defs/solarized-light/styles/popup/background-color -> solarized-light.json:74 -/ui/theme-defs/solarized-light/styles/popup/color -> solarized-light.json:73 -/ui/theme-defs/solarized-light/styles/scrollbar/background-color -> solarized-light.json:78 -/ui/theme-defs/solarized-light/styles/scrollbar/color -> solarized-light.json:77 -/ui/theme-defs/solarized-light/styles/skewed-time/color -> solarized-light.json:64 -/ui/theme-defs/solarized-light/styles/text/background-color -> solarized-light.json:33 -/ui/theme-defs/solarized-light/styles/text/color -> solarized-light.json:32 -/ui/theme-defs/solarized-light/styles/warning/bold -> solarized-light.json:48 -/ui/theme-defs/solarized-light/styles/warning/color -> solarized-light.json:47 -/ui/theme-defs/solarized-light/syntax-styles/comment/color -> solarized-light.json:119 -/ui/theme-defs/solarized-light/syntax-styles/diff-add/color -> solarized-light.json:140 -/ui/theme-defs/solarized-light/syntax-styles/diff-delete/color -> solarized-light.json:137 -/ui/theme-defs/solarized-light/syntax-styles/diff-section/color -> solarized-light.json:143 -/ui/theme-defs/solarized-light/syntax-styles/doc-directive/color -> solarized-light.json:122 -/ui/theme-defs/solarized-light/syntax-styles/file/color -> solarized-light.json:155 -/ui/theme-defs/solarized-light/syntax-styles/keyword/color -> solarized-light.json:112 -/ui/theme-defs/solarized-light/syntax-styles/re-repeat/color -> solarized-light.json:134 -/ui/theme-defs/solarized-light/syntax-styles/re-special/color -> solarized-light.json:131 -/ui/theme-defs/solarized-light/syntax-styles/spectrogram-high/background-color -> solarized-light.json:152 -/ui/theme-defs/solarized-light/syntax-styles/spectrogram-low/background-color -> solarized-light.json:146 -/ui/theme-defs/solarized-light/syntax-styles/spectrogram-medium/background-color -> solarized-light.json:149 -/ui/theme-defs/solarized-light/syntax-styles/string/bold -> solarized-light.json:116 -/ui/theme-defs/solarized-light/syntax-styles/string/color -> solarized-light.json:115 -/ui/theme-defs/solarized-light/syntax-styles/symbol/color -> solarized-light.json:128 -/ui/theme-defs/solarized-light/syntax-styles/variable/color -> solarized-light.json:125 +/ui/theme-defs/solarized-light/log-level-styles/critical/color -> solarized-light.json:254 +/ui/theme-defs/solarized-light/log-level-styles/error/color -> solarized-light.json:251 +/ui/theme-defs/solarized-light/log-level-styles/fatal/color -> solarized-light.json:257 +/ui/theme-defs/solarized-light/log-level-styles/warning/color -> solarized-light.json:248 +/ui/theme-defs/solarized-light/status-styles/active/background-color -> solarized-light.json:228 +/ui/theme-defs/solarized-light/status-styles/active/color -> solarized-light.json:227 +/ui/theme-defs/solarized-light/status-styles/alert/background-color -> solarized-light.json:224 +/ui/theme-defs/solarized-light/status-styles/alert/color -> solarized-light.json:223 +/ui/theme-defs/solarized-light/status-styles/disabled-title/background-color -> solarized-light.json:206 +/ui/theme-defs/solarized-light/status-styles/disabled-title/bold -> solarized-light.json:207 +/ui/theme-defs/solarized-light/status-styles/disabled-title/color -> solarized-light.json:205 +/ui/theme-defs/solarized-light/status-styles/inactive-alert/background-color -> solarized-light.json:240 +/ui/theme-defs/solarized-light/status-styles/inactive-alert/color -> solarized-light.json:239 +/ui/theme-defs/solarized-light/status-styles/inactive/background-color -> solarized-light.json:236 +/ui/theme-defs/solarized-light/status-styles/inactive/color -> solarized-light.json:235 +/ui/theme-defs/solarized-light/status-styles/info/background-color -> solarized-light.json:232 +/ui/theme-defs/solarized-light/status-styles/info/color -> solarized-light.json:231 +/ui/theme-defs/solarized-light/status-styles/subtitle/background-color -> solarized-light.json:211 +/ui/theme-defs/solarized-light/status-styles/subtitle/bold -> solarized-light.json:212 +/ui/theme-defs/solarized-light/status-styles/subtitle/color -> solarized-light.json:210 +/ui/theme-defs/solarized-light/status-styles/suggestion/color -> solarized-light.json:243 +/ui/theme-defs/solarized-light/status-styles/text/background-color -> solarized-light.json:216 +/ui/theme-defs/solarized-light/status-styles/text/color -> solarized-light.json:215 +/ui/theme-defs/solarized-light/status-styles/title/background-color -> solarized-light.json:201 +/ui/theme-defs/solarized-light/status-styles/title/bold -> solarized-light.json:202 +/ui/theme-defs/solarized-light/status-styles/title/color -> solarized-light.json:200 +/ui/theme-defs/solarized-light/status-styles/warn/background-color -> solarized-light.json:220 +/ui/theme-defs/solarized-light/status-styles/warn/color -> solarized-light.json:219 +/ui/theme-defs/solarized-light/styles/adjusted-time/color -> solarized-light.json:64 +/ui/theme-defs/solarized-light/styles/alt-text/background-color -> solarized-light.json:35 +/ui/theme-defs/solarized-light/styles/breadcrumb/bold -> solarized-light.json:120 +/ui/theme-defs/solarized-light/styles/breadcrumb/color -> solarized-light.json:119 +/ui/theme-defs/solarized-light/styles/cursor-line/background-color -> solarized-light.json:55 +/ui/theme-defs/solarized-light/styles/cursor-line/bold -> solarized-light.json:56 +/ui/theme-defs/solarized-light/styles/cursor-line/color -> solarized-light.json:54 +/ui/theme-defs/solarized-light/styles/cursor-line/underline -> solarized-light.json:57 +/ui/theme-defs/solarized-light/styles/disabled-cursor-line/background-color -> solarized-light.json:61 +/ui/theme-defs/solarized-light/styles/disabled-cursor-line/color -> solarized-light.json:60 +/ui/theme-defs/solarized-light/styles/disabled-focused/background-color -> solarized-light.json:89 +/ui/theme-defs/solarized-light/styles/disabled-focused/color -> solarized-light.json:88 +/ui/theme-defs/solarized-light/styles/error/bold -> solarized-light.json:43 +/ui/theme-defs/solarized-light/styles/error/color -> solarized-light.json:42 +/ui/theme-defs/solarized-light/styles/focused/background-color -> solarized-light.json:85 +/ui/theme-defs/solarized-light/styles/focused/color -> solarized-light.json:84 +/ui/theme-defs/solarized-light/styles/footnote-border/background-color -> solarized-light.json:137 +/ui/theme-defs/solarized-light/styles/footnote-border/color -> solarized-light.json:136 +/ui/theme-defs/solarized-light/styles/footnote-text/background-color -> solarized-light.json:141 +/ui/theme-defs/solarized-light/styles/footnote-text/color -> solarized-light.json:140 +/ui/theme-defs/solarized-light/styles/h1/underline -> solarized-light.json:92 +/ui/theme-defs/solarized-light/styles/h2/underline -> solarized-light.json:95 +/ui/theme-defs/solarized-light/styles/h3/underline -> solarized-light.json:98 +/ui/theme-defs/solarized-light/styles/h4/underline -> solarized-light.json:101 +/ui/theme-defs/solarized-light/styles/h5/underline -> solarized-light.json:104 +/ui/theme-defs/solarized-light/styles/h6/underline -> solarized-light.json:107 +/ui/theme-defs/solarized-light/styles/hidden/bold -> solarized-light.json:51 +/ui/theme-defs/solarized-light/styles/hidden/color -> solarized-light.json:50 +/ui/theme-defs/solarized-light/styles/hr/color -> solarized-light.json:110 +/ui/theme-defs/solarized-light/styles/hyperlink/underline -> solarized-light.json:113 +/ui/theme-defs/solarized-light/styles/identifier/color -> solarized-light.json:28 +/ui/theme-defs/solarized-light/styles/indent-guide/color -> solarized-light.json:147 +/ui/theme-defs/solarized-light/styles/invalid-msg/color -> solarized-light.json:73 +/ui/theme-defs/solarized-light/styles/list-glyph/color -> solarized-light.json:116 +/ui/theme-defs/solarized-light/styles/offset-time/color -> solarized-light.json:70 +/ui/theme-defs/solarized-light/styles/ok/bold -> solarized-light.json:39 +/ui/theme-defs/solarized-light/styles/ok/color -> solarized-light.json:38 +/ui/theme-defs/solarized-light/styles/popup/background-color -> solarized-light.json:77 +/ui/theme-defs/solarized-light/styles/popup/color -> solarized-light.json:76 +/ui/theme-defs/solarized-light/styles/quote-border/background-color -> solarized-light.json:130 +/ui/theme-defs/solarized-light/styles/quote-border/color -> solarized-light.json:129 +/ui/theme-defs/solarized-light/styles/quoted-text/background-color -> solarized-light.json:133 +/ui/theme-defs/solarized-light/styles/scrollbar/background-color -> solarized-light.json:81 +/ui/theme-defs/solarized-light/styles/scrollbar/color -> solarized-light.json:80 +/ui/theme-defs/solarized-light/styles/skewed-time/color -> solarized-light.json:67 +/ui/theme-defs/solarized-light/styles/snippet-border/color -> solarized-light.json:144 +/ui/theme-defs/solarized-light/styles/table-border/color -> solarized-light.json:123 +/ui/theme-defs/solarized-light/styles/table-header/bold -> solarized-light.json:126 +/ui/theme-defs/solarized-light/styles/text/background-color -> solarized-light.json:32 +/ui/theme-defs/solarized-light/styles/text/color -> solarized-light.json:31 +/ui/theme-defs/solarized-light/styles/warning/bold -> solarized-light.json:47 +/ui/theme-defs/solarized-light/styles/warning/color -> solarized-light.json:46 +/ui/theme-defs/solarized-light/syntax-styles/comment/color -> solarized-light.json:159 +/ui/theme-defs/solarized-light/syntax-styles/diff-add/color -> solarized-light.json:180 +/ui/theme-defs/solarized-light/syntax-styles/diff-delete/color -> solarized-light.json:177 +/ui/theme-defs/solarized-light/syntax-styles/diff-section/color -> solarized-light.json:183 +/ui/theme-defs/solarized-light/syntax-styles/doc-directive/color -> solarized-light.json:162 +/ui/theme-defs/solarized-light/syntax-styles/file/color -> solarized-light.json:195 +/ui/theme-defs/solarized-light/syntax-styles/keyword/color -> solarized-light.json:152 +/ui/theme-defs/solarized-light/syntax-styles/re-repeat/color -> solarized-light.json:174 +/ui/theme-defs/solarized-light/syntax-styles/re-special/color -> solarized-light.json:171 +/ui/theme-defs/solarized-light/syntax-styles/spectrogram-high/background-color -> solarized-light.json:192 +/ui/theme-defs/solarized-light/syntax-styles/spectrogram-low/background-color -> solarized-light.json:186 +/ui/theme-defs/solarized-light/syntax-styles/spectrogram-medium/background-color -> solarized-light.json:189 +/ui/theme-defs/solarized-light/syntax-styles/string/bold -> solarized-light.json:156 +/ui/theme-defs/solarized-light/syntax-styles/string/color -> solarized-light.json:155 +/ui/theme-defs/solarized-light/syntax-styles/symbol/color -> solarized-light.json:168 +/ui/theme-defs/solarized-light/syntax-styles/variable/color -> solarized-light.json:165 /ui/theme-defs/solarized-light/vars/base0 -> solarized-light.json:11 /ui/theme-defs/solarized-light/vars/base00 -> solarized-light.json:10 /ui/theme-defs/solarized-light/vars/base01 -> solarized-light.json:9