diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/mail/themes/addons/dark/manifest.json | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/mail/themes/addons/dark/manifest.json')
-rw-r--r-- | comm/mail/themes/addons/dark/manifest.json | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/comm/mail/themes/addons/dark/manifest.json b/comm/mail/themes/addons/dark/manifest.json new file mode 100644 index 0000000000..d7d175ba93 --- /dev/null +++ b/comm/mail/themes/addons/dark/manifest.json @@ -0,0 +1,73 @@ +{ + "manifest_version": 2, + + "browser_specific_settings": { + "gecko": { + "id": "thunderbird-compact-dark@mozilla.org" + } + }, + + "name": "Dark", + "description": "A theme with a dark color scheme.", + "author": "Mozilla", + "version": "1.3", + + "icons": { "32": "icon.svg" }, + + "theme": { + "colors": { + "tab_background_text": "#fafafa", + "icons": "#fafafa", + "frame": "#18181b", + "popup": "#27272a", + "popup_text": "#f4f4f5", + "popup_border": "#71717a", + "popup_highlight": "#2493ef", + "tab_line": "#2493ef", + "toolbar": "#3f3f46", + "toolbar_bottom_separator": "#18181b", + "toolbar_field": "#3f3f46", + "toolbar_field_border": "#71717a", + "toolbar_field_border_focus": "#2493ef", + "toolbar_field_text": "#f4f4f5", + "toolbar_field_focus": "#52525b", + "sidebar": "#27272a", + "sidebar_text": "#d4d4d8", + "sidebar_highlight": "#2493ef", + "sidebar_highlight_text": "#fff", + "sidebar_highlight_border": "#4cb1f9", + "sidebar_border": "#3f3f46", + "button": "rgb(63, 62, 71)", + "button_hover": "rgb(82, 82, 94)", + "button_active": "rgb(91, 91, 102)", + "error_text_color": "#fca5a5", + "input_background": "#3f3f46", + "input_color": "#f4f4f5", + "input_border": "#71717a" + }, + "properties": { + "color_scheme": "dark", + "panel_hover": "color-mix(in srgb, currentColor 10%, transparent)", + "panel_active": "color-mix(in srgb, currentColor 14%, transparent)", + "panel_active_darker": "color-mix(in srgb, currentColor 25%, transparent)" + } + }, + + "theme_experiment": { + "stylesheet": "experiment.css", + "colors": { + "button": "--button-background-color", + "button_hover": "--button-hover-background-color", + "button_active": "--button-active-background-color", + "error_text_color": "--error-text-color", + "input_background": "--input-bgcolor", + "input_color": "--input-color", + "input_border": "--input-border-color" + }, + "properties": { + "panel_hover": "--arrowpanel-dimmed", + "panel_active": "--arrowpanel-dimmed-further", + "panel_active_darker": "--arrowpanel-dimmed-even-further" + } + } +} |