From a4c432af3781f0a0fddc6b511a2b87da5a4b471a Mon Sep 17 00:00:00 2001 From: Pogodaanton <8974778+Pogodaanton@users.noreply.github.com> Date: Mon, 10 Jul 2023 18:37:38 +0200 Subject: [PATCH] fix(mails): hover colors had low contrast misc: add vscode recommendation for easier color tweaking in editor --- .vscode/extensions.json | 5 +++++ .vscode/settings.json | 14 ++++++++++++++ manifest.json | 6 ++++-- style.css | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..37f5bf8 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "kamikillerto.vscode-colorize" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..0326087 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "colorize.languages": [ + "json", + "css", + "sass", + "scss", + "less", + "postcss", + "sss", + "stylus", + "xml", + "svg" + ] +} \ No newline at end of file diff --git a/manifest.json b/manifest.json index cec6d72..8ae6b95 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "gecko": { "id": "{96eca668-abbf-44cd-8bd3-91e485429d25}", "strict_min_version": "115.0", - "strict_max_version": "116.*" + "strict_max_version": "117.*" } }, "description": "A faithful port of the original Cobalt2 theme by Wes Bos.", @@ -41,10 +41,11 @@ "sidebar_border": "#0d3a58", "c_sidebar_border_fix1": "transparent", "sidebar_highlight_border": "#193549", - "sidebar_highlight": "#193549", + "sidebar_highlight": "#1f4662", "sidebar_highlight_text": "#fff", "c_tree_view_bg": "#193549", "c_tree_view_color": "#cccccc", + "c_tree_view_header_hover": "#1f4662", "popup": "#122738", "popup_text": "#ffffff", "popup_border": "#606060", @@ -121,6 +122,7 @@ "c_spaces_active_border": "--spaces-button-active-border-color", "c_tree_view_bg": "--tree-view-bg", "c_tree_view_color": "--tree-view-color", + "c_tree_view_header_hover": "--tree-view-header-hover-bg", "c_button_alt": "--button-background-color", "c_button_alt_border": "--button-border-color", "c_button_alt_hover": "--button-hover-background-color", diff --git a/style.css b/style.css index fdececb..72f513c 100644 --- a/style.css +++ b/style.css @@ -40,7 +40,7 @@ calendar-minimonth { border-color: transparent; } -#messagepanebox { +#messagePane #messagepanebox { --layout-background-1: var(--c-message-pane-box-background) !important; }