From 30e955e9d8a0496e57642d653ae76b66512dfcf7 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sat, 5 Nov 2022 17:09:57 +0100 Subject: [PATCH] Better colors --- hm_modules/polybar.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hm_modules/polybar.nix b/hm_modules/polybar.nix index 96961db..3e6e0dc 100644 --- a/hm_modules/polybar.nix +++ b/hm_modules/polybar.nix @@ -32,13 +32,12 @@ let active = { foreground = colorPalette.bright.white; background = color.setAlphaRgba alpha (colorPalette.normal.black); - underline = colorPalette.bright.blue; + underline = colorPalette.normal.yellow; }; selected = { foreground = colorPalette.bright.white; - background = color.setAlphaRgba alpha - (color.brighten 10 colorPalette.bright.black); + background = color.setAlphaRgba alpha (color.brighten 10 colorPalette.bright.black); underline = colorPalette.bright.red; };