From 6917103b52fe98c45beaaebf07934c3d2fda92fd Mon Sep 17 00:00:00 2001 From: davidpkj Date: Tue, 6 Dec 2022 21:09:33 +0100 Subject: Change color management --- qutebrowser/.config/qutebrowser/config.py | 9 ++-- qutebrowser/.config/qutebrowser/utils.py | 4 ++ wal/.config/wal/templates/config.py | 82 ------------------------------ wal/.config/wal/templates/zathurarc | 20 -------- xorg/.Xresources | 73 +------------------------- xorg/.config/wallpaper | Bin 1434794 -> 1782198 bytes zathura/.config/zathura/zathurarc | 19 +++---- 7 files changed, 19 insertions(+), 188 deletions(-) create mode 100644 qutebrowser/.config/qutebrowser/utils.py delete mode 100644 wal/.config/wal/templates/config.py delete mode 100644 wal/.config/wal/templates/zathurarc diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 4ff32b1..a2262c0 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -1,12 +1,9 @@ config.load_autoconfig(False) -translucent = "#801a1a1a" -background = "#1a1a1a" -foreground = "#bbd2e0" -accent = "#306b92" +from utils import * -c.zoom.default = "175%" -c.fonts.default_size = "19pt" +c.zoom.default = "100%" +c.fonts.default_size = "8pt" c.fonts.default_family = "JetBrains Mono" c.downloads.location.prompt = False diff --git a/qutebrowser/.config/qutebrowser/utils.py b/qutebrowser/.config/qutebrowser/utils.py new file mode 100644 index 0000000..790bea2 --- /dev/null +++ b/qutebrowser/.config/qutebrowser/utils.py @@ -0,0 +1,4 @@ +translucent = "#801a1a1a" +background = "#1a1a1a" +foreground = "#bcd0db" +accent = "#a642c0" diff --git a/wal/.config/wal/templates/config.py b/wal/.config/wal/templates/config.py deleted file mode 100644 index 0438973..0000000 --- a/wal/.config/wal/templates/config.py +++ /dev/null @@ -1,82 +0,0 @@ -config.load_autoconfig(False) - -translucent = "#801a1a1a" -background = "#1a1a1a" -foreground = "#f0ede1" -accent = "#bace6d" - -c.zoom.default = "175%" -c.fonts.default_size = "20pt" -c.fonts.default_family = "Hack" - -c.downloads.location.prompt = False -c.downloads.location.remember = False -c.downloads.location.directory = "/home/me/downloads/" - -c.statusbar.widgets = ["keypress", "url", "scroll"] -c.statusbar.show = "in-mode" - -c.tabs.favicons.show = "never" -c.tabs.title.alignment = "center" -c.tabs.title.format = "{perc}{audio}{current_title}" - -# fileselect stuff - -c.colors.completion.category.bg = accent -c.colors.completion.category.fg = background -c.colors.completion.even.bg = background -c.colors.completion.odd.bg = background -c.colors.completion.item.selected.bg = foreground -c.colors.completion.item.selected.fg = background -c.colors.completion.item.selected.match.fg = accent -c.colors.completion.match.fg = accent -c.colors.completion.scrollbar.bg = background -c.colors.completion.scrollbar.fg = foreground - -c.colors.downloads.bar.bg = background -c.colors.downloads.error.bg = background -c.colors.downloads.error.fg = foreground -c.colors.downloads.start.bg = background -c.colors.downloads.start.fg = foreground -c.colors.downloads.stop.bg = background -c.colors.downloads.stop.fg = foreground - -c.colors.keyhint.bg = translucent -c.colors.keyhint.fg = foreground -c.colors.keyhint.suffix.fg = accent -c.colors.hints.bg = translucent -c.colors.hints.fg = foreground -c.hints.border = "none" -c.hints.radius = 0 - -c.colors.tabs.bar.bg = background -c.colors.tabs.even.bg = background -c.colors.tabs.even.fg = foreground -c.colors.tabs.odd.bg = background -c.colors.tabs.odd.fg = foreground -c.colors.tabs.indicator.error = accent -c.colors.tabs.indicator.start = foreground -c.colors.tabs.indicator.stop = background -c.colors.tabs.selected.even.bg = accent -c.colors.tabs.selected.even.fg = background -c.colors.tabs.selected.odd.bg = accent -c.colors.tabs.selected.odd.fg = background - -c.colors.statusbar.command.bg = background -c.colors.statusbar.command.fg = foreground -c.colors.statusbar.url.fg = foreground -c.colors.statusbar.url.warn.fg = accent -c.colors.statusbar.url.error.fg = accent -c.colors.statusbar.url.hover.fg = foreground -c.colors.statusbar.url.success.http.fg = foreground -c.colors.statusbar.url.success.https.fg = foreground - -c.colors.messages.error.bg = background -c.colors.messages.error.fg = foreground -c.colors.messages.error.border = background -c.colors.messages.info.bg = background -c.colors.messages.info.fg = foreground -c.colors.messages.info.border = background -c.colors.messages.warning.bg = background -c.colors.messages.warning.fg = foreground -c.colors.messages.warning.border = background diff --git a/wal/.config/wal/templates/zathurarc b/wal/.config/wal/templates/zathurarc deleted file mode 100644 index a30e101..0000000 --- a/wal/.config/wal/templates/zathurarc +++ /dev/null @@ -1,20 +0,0 @@ -set selection-clipboard "clipboard" - -set window-title-basename true -set window-title-page false - -set default-bg "#1a1a1a" -set font "Hack normal 20" -set highlight-color "#ece4e4" -set highlight-active-color "#f30021" -set recolor-lightcolor "#1a1a1a" -set statusbar-bg "#1a1a1a" -set statusbar-fg "#ece4e4" -set inputbar-bg "#1a1a1a" -set inputbar-fg "#ece4e4" -set completion-fg "#ece4e4" -set completion-bg "#1a1a1a" -set completion-group-fg "#ece4e4" -set completion-group-bg "#f30021" -set completion-highlight-fg "#1a1a1a" -set completion-highlight-bg "#ece4e4" diff --git a/xorg/.Xresources b/xorg/.Xresources index ae19709..62afedc 100644 --- a/xorg/.Xresources +++ b/xorg/.Xresources @@ -1,72 +1,3 @@ -Xft.dpi: 96 +Xft.dpi: 220 -! X colors. -! Generated by 'wal' -*foreground: #cbcbcb -*background: #141414 -*.foreground: #cbcbcb -*.background: #141414 -emacs*foreground: #cbcbcb -emacs*background: #141414 -URxvt*foreground: #cbcbcb -XTerm*foreground: #cbcbcb -UXTerm*foreground: #cbcbcb -URxvt*background: [100]#141414 -XTerm*background: #141414 -UXTerm*background: #141414 -URxvt*cursorColor: #cbcbcb -XTerm*cursorColor: #cbcbcb -UXTerm*cursorColor: #cbcbcb -URxvt*borderColor: [100]#141414 - -! Colors 0-15. -*.color0: #141414 -*color0: #141414 -*.color1: #98000d -*color1: #98000d -*.color2: #a2000c -*color2: #a2000c -*.color3: #e10000 -*color3: #e10000 -*.color4: #b80018 -*color4: #b80018 -*.color5: #ff1f4d -*color5: #ff1f4d -*.color6: #fe0b0b -*color6: #fe0b0b -*.color7: #cbcbcb -*color7: #cbcbcb -*.color8: #8e8e8e -*color8: #8e8e8e -*.color9: #98000d -*color9: #98000d -*.color10: #a2000c -*color10: #a2000c -*.color11: #e10000 -*color11: #e10000 -*.color12: #b80018 -*color12: #b80018 -*.color13: #ff1f4d -*color13: #ff1f4d -*.color14: #fe0b0b -*color14: #fe0b0b -*.color15: #cbcbcb -*color15: #cbcbcb - -! Black color that will not be affected by bold highlighting. -*.color66: #141414 -*color66: #141414 - -! Xclock colors. -XClock*foreground: #cbcbcb -XClock*background: #141414 -XClock*majorColor: rgba:cb/cb/cb/ff -XClock*minorColor: rgba:cb/cb/cb/ff -XClock*hourColor: rgba:cb/cb/cb/ff -XClock*minuteColor: rgba:cb/cb/cb/ff -XClock*secondColor: rgba:cb/cb/cb/ff - -! Set depth to make transparency work. -URxvt*depth: 32 - -Sxiv.font: JetBrains Mono:pixelsize=23 +Sxiv.font: JetBrains Mono:pixelsize=24 diff --git a/xorg/.config/wallpaper b/xorg/.config/wallpaper index d118bcc..92c5f6c 100644 Binary files a/xorg/.config/wallpaper and b/xorg/.config/wallpaper differ diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc index bbb6424..2dc8b3e 100644 --- a/zathura/.config/zathura/zathurarc +++ b/zathura/.config/zathura/zathurarc @@ -5,18 +5,19 @@ set window-title-page false set recolor true +set font "JetBrains Mono normal 8" + set default-bg "#1a1a1a" -set font "JetBrains Mono normal 18" -set highlight-color "#bbd2e0" -set highlight-active-color "#306b92" +set highlight-color "#e8e2ef" +set highlight-active-color "#a642c0" set recolor-lightcolor "#1a1a1a" set statusbar-bg "#1a1a1a" -set statusbar-fg "#bbd2e0" +set statusbar-fg "#e8e2ef" set inputbar-bg "#1a1a1a" -set inputbar-fg "#bbd2e0" -set completion-fg "#bbd2e0" +set inputbar-fg "#e8e2ef" +set completion-fg "#e8e2ef" set completion-bg "#1a1a1a" -set completion-group-fg "#bbd2e0" -set completion-group-bg "#306b92" +set completion-group-fg "#e8e2ef" +set completion-group-bg "#a642c0" set completion-highlight-fg "#1a1a1a" -set completion-highlight-bg "#bbd2e0" +set completion-highlight-bg "#e8e2ef" -- cgit v1.2.3