From 886fd990d2238fcf042ffa660b0d31a4d41131a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 24 Sep 2024 12:01:47 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(browser):=20add=20a=20new=20us?= =?UTF-8?q?erChrome=20for=20the=20zen-browser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit using code from this repo: https://github.com/IAmJafeth/zen-browser --- .config/browser/chrome/zen-userChrome.css | 54 +++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .config/browser/chrome/zen-userChrome.css diff --git a/.config/browser/chrome/zen-userChrome.css b/.config/browser/chrome/zen-userChrome.css new file mode 100644 index 00000000..5f0b5d79 --- /dev/null +++ b/.config/browser/chrome/zen-userChrome.css @@ -0,0 +1,54 @@ +/* Theming */ +@media (prefers-color-scheme: dark) { + :root { + --zen-colors-primary: #24273a !important; + --zen-colors-secondary: #363a4f !important; + --zen-colors-tertiary: #1e2030 !important; + --zen-colors-border: #363a4f !important; + --toolbarbutton-icon-fill: #b7bdf8 !important; + --lwt-text-color: #cad3f5 !important; + --toolbar-field-color: #cad3f5 !important; + --tab-selected-textcolor: rgb(193, 200, 246) !important; + --toolbar-field-focus-color: #cad3f5 !important; + --toolbar-color: #cad3f5 !important; + --newtab-text-primary-color: #cad3f5 !important; + --arrowpanel-color: #cad3f5 !important; + --arrowpanel-background: #24273a !important; + --sidebar-text-color: #cad3f5 !important; + --lwt-sidebar-text-color: #cad3f5 !important; + --lwt-sidebar-background-color: #181926 !important; + --toolbar-bgcolor: #363a4f !important; + --newtab-background-color: #24273a !important; + } + + .sidebar-placesTree { + background-color: #363a4f !important; + } + + #zen-workspaces-button { + background-color: #24273a !important; + } + + #TabsToolbar { + background-color: #1e2030 !important; + } + + #urlbar-background { + background-color: #1e2030 !important; + } + + .content-shortcuts { + background-color: #24273a !important; + border-color: #b7bdf8 !important; + } + + .urlbarView-url { + color: #b7bdf8 !important; + } +} + +/* Hide some buttons */ +#back-button, +#forward-button { + display: none !important; +}