1{
2  "manifest_version": 2,
3
4  "applications": {
5    "gecko": {
6      "id": "thunderbird-compact-dark@mozilla.org"
7    }
8  },
9
10  "name": "Dark",
11  "description": "A theme with a dark color scheme.",
12  "author": "Mozilla",
13  "version": "1.2",
14
15  "icons": {"32": "icon.svg"},
16
17  "theme": {
18    "colors": {
19      "tab_background_text": "#fbfbfe",
20      "icons": "#fbfbfe",
21      "frame": "#1c1b22",
22      "popup": "rgb(40, 40, 41)",
23      "popup_text": "rgb(251, 251, 254)",
24      "popup_border": "rgb(82, 82, 94)",
25      "popup_highlight": "#0060df",
26      "tab_line": "#0a84ff",
27      "toolbar": "hsl(240, 1%, 20%)",
28      "toolbar_bottom_separator": "hsl(240, 5%, 5%)",
29      "toolbar_field": "rgb(65, 65, 67)",
30      "toolbar_field_border": "#8f8f9d",
31      "toolbar_field_border_focus": "#45a1ff",
32      "toolbar_field_text": "rgb(251, 251, 254)",
33      "toolbar_field_focus": "rgb(65, 65, 67)",
34      "sidebar": "#38383D",
35      "sidebar_text": "#d4d4d4",
36      "sidebar_highlight": "#45a1ff",
37      "sidebar_highlight_text": "#fff",
38      "sidebar_highlight_border": "#bebebf",
39      "sidebar_border": "#606064",
40      "button": "rgb(43, 42, 51)",
41      "button_hover": "rgb(82, 82, 94)",
42      "button_active": "rgb(91, 91, 102)",
43      "error_text_color": "rgb(255, 154, 162)",
44      "input_background": "#42414d",
45      "input_color": "#bfbfc9",
46      "input_border": "#8f8f9d",
47      "input_border_error": "rgb(255, 132, 138)"
48    },
49    "properties": {
50      "panel_hover": "color-mix(in srgb, currentColor 9%, transparent)",
51      "panel_active": "color-mix(in srgb, currentColor 14%, transparent)",
52      "panel_active_darker": "color-mix(in srgb, currentColor 25%, transparent)"
53    }
54  },
55
56  "theme_experiment": {
57    "stylesheet": "experiment.css",
58    "colors": {
59      "button": "--button-bgcolor",
60      "button_hover": "--button-hover-bgcolor",
61      "button_active": "--button-active-bgcolor",
62      "error_text_color": "--error-text-color",
63      "input_background": "--input-bgcolor",
64      "input_color": "--input-color",
65      "input_border": "--input-border-color",
66      "input_border_error": "--input-error-border-color"
67    },
68    "properties": {
69      "panel_hover": "--arrowpanel-dimmed",
70      "panel_active": "--arrowpanel-dimmed-further",
71      "panel_active_darker": "--arrowpanel-dimmed-even-further"
72    }
73  }
74}
75