From aaa9f1723efb755682578588bc37f5dccc832c58 Mon Sep 17 00:00:00 2001 From: Tomas Mirchev Date: Mon, 20 Oct 2025 02:15:58 +0200 Subject: [PATCH] feat: tags theme --- README.md | 6 +++++ others/theme_MinimalGrayTabs/manifest.json | 27 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 others/theme_MinimalGrayTabs/manifest.json diff --git a/README.md b/README.md index 2387fd4..20513bc 100644 --- a/README.md +++ b/README.md @@ -218,3 +218,9 @@ Chromium: 141.0.7390.108 - Energy Saver >> OFF - (Local State): performance_tuning.battery_saver_mode +## Theme + +- Go to `brave://extensions/` +- Enable "Developer mode" +- Click "Load unpacked" and select `others/theme_MinimalGrayTabs` + diff --git a/others/theme_MinimalGrayTabs/manifest.json b/others/theme_MinimalGrayTabs/manifest.json new file mode 100644 index 0000000..14b5ec1 --- /dev/null +++ b/others/theme_MinimalGrayTabs/manifest.json @@ -0,0 +1,27 @@ +{ + "manifest_version": 3, + "version": "1", + "name": "Minimal Gray Tabs", + "theme": { + "colors": { + "frame": [180, 180, 180], + "frame_inactive": [200, 200, 200], + "toolbar": [225, 225, 225], + + "tab_background_inactive": [190, 190, 190], + "tab_selected": [255, 255, 255], + "tab_text": [0, 0, 0], + + "tab_background_separator": [120, 120, 120], + "tab_line": [0, 0, 0], + + "bookmark_text": [0, 0, 0], + "omnibox_background": [245, 245, 245], + "omnibox_text": [0, 0, 0], + + "ntp_background": [255, 255, 255], + "ntp_text": [20, 20, 20] + } + } +} +