diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /toolkit/mozapps/extensions/default-theme | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/mozapps/extensions/default-theme')
-rw-r--r-- | toolkit/mozapps/extensions/default-theme/icon.svg | 14 | ||||
-rw-r--r-- | toolkit/mozapps/extensions/default-theme/manifest.json | 42 |
2 files changed, 56 insertions, 0 deletions
diff --git a/toolkit/mozapps/extensions/default-theme/icon.svg b/toolkit/mozapps/extensions/default-theme/icon.svg new file mode 100644 index 0000000000..5699a9ff7d --- /dev/null +++ b/toolkit/mozapps/extensions/default-theme/icon.svg @@ -0,0 +1,14 @@ +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> +<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"> + <path fill="#202340" d="M2 2h14v13H2z"/> + <path fill="#f9f9fa" d="M16 2v13H2v15h28V2H16z"/> + <rect x="1" y="1" width="30" height="30" rx="2" ry="2" fill="none" stroke="#08091a" stroke-opacity=".35" stroke-width="2"/> + <circle cx="9.5" cy="22.5" r="6" fill="#fff" stroke="#adadb3"/> + <path d="M12.5 22H7.707l2.146-2.146a.5.5 0 0 0-.707-.707l-3 3a.5.5 0 0 0 0 .708l3 3a.5.5 0 1 0 .707-.707L7.707 23H12.5a.5.5 0 0 0 0-1z" fill="#0c0c0d" fill-opacity=".8"/> + <path d="M20.5 20h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0 0 1zm4 2h-4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1zm0 3h-4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1z" fill="#0c0c0d" fill-opacity=".8"/> + <path fill="#0a84ff" d="M16 2h14v1H16z"/> + <path d="M26.354 8.646l-3.5-3.5a.5.5 0 0 0-.707 0l-3.5 3.5a.5.5 0 0 0 .707.707L20 8.707V11.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5V8.707l.646.646a.5.5 0 1 0 .707-.707zM24 11h-1V9h-1v2h-1V7.707l1.5-1.5 1.5 1.5z" fill="#0c0c0d" fill-opacity=".8"/> + <path fill="#08091a" d="M15 2v12H2v1h14V2h-1z"/> +</svg>
\ No newline at end of file diff --git a/toolkit/mozapps/extensions/default-theme/manifest.json b/toolkit/mozapps/extensions/default-theme/manifest.json new file mode 100644 index 0000000000..05d6e0e19a --- /dev/null +++ b/toolkit/mozapps/extensions/default-theme/manifest.json @@ -0,0 +1,42 @@ +{ + "manifest_version": 2, + + "applications": { + "gecko": { + "id": "default-theme@mozilla.org" + } + }, + + "name": "Default", + "description": "A theme with the operating system color scheme.", + "author": "Mozilla", + "version": "1.1", + + "icons": {"32": "icon.svg"}, + + "theme": { + }, + + "dark_theme": { + "colors": { + "tab_background_text": "rgb(249, 249, 250)", + "icons": "rgb(249, 249, 250, 0.7)", + "frame": "hsl(240, 5%, 5%)", + "popup": "#4a4a4f", + "popup_text": "rgb(249, 249, 250)", + "popup_border": "#27272b", + "tab_line": "#0a84ff", + "toolbar": "hsl(240, 1%, 20%)", + "toolbar_bottom_separator": "hsl(240, 5%, 5%)", + "toolbar_field": "rgb(71, 71, 73)", + "toolbar_field_border": "rgba(249, 249, 250, 0.2)", + "toolbar_field_separator": "#5F6670", + "toolbar_field_text": "rgb(249, 249, 250)", + "ntp_background": "#2A2A2E", + "ntp_text": "rgb(249, 249, 250)", + "sidebar": "#38383D", + "sidebar_text": "rgb(249, 249, 250)", + "sidebar_border": "rgba(255, 255, 255, 0.1)" + } + } +} |