From 0418138d761dab8f74a2087effba97cf5085fb62 Mon Sep 17 00:00:00 2001 From: atagen Date: Fri, 16 Jun 2023 20:27:11 +1000 Subject: [PATCH] more theme tweaks --- gtk-theme.nix | 2 +- home/dots/eww/colors.scss | 8 ++++---- home/home.nix | 4 ++-- home/programs/eww/scripts/workspaces | 6 +++--- system/quiver.nix | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/gtk-theme.nix b/gtk-theme.nix index 332bdae..c06ec72 100644 --- a/gtk-theme.nix +++ b/gtk-theme.nix @@ -47,7 +47,7 @@ pkgs.stdenv.mkDerivation rec { HDR_FG=${palette.bright.yellow} HDR_BG=${palette.util.bg} MATERIA_SURFACE=${palette.normal.black} - MATERIA_VIEW=${palette.util.bg} + MATERIA_VIEW=${palette.bright.black} MENU_BG=${palette.util.bg} MENU_FG=${palette.util.fg} SEL_BG=${palette.normal.yellow} diff --git a/home/dots/eww/colors.scss b/home/dots/eww/colors.scss index 8205870..cf55ce8 100644 --- a/home/dots/eww/colors.scss +++ b/home/dots/eww/colors.scss @@ -25,9 +25,9 @@ $white_a: #WHTA; $fg: #FG; $bg: #BG; -$border: $black_a; +$border: $yellow_a; $shadow: $black_a; -$base: $black; -$bg1: $black_a; +$base: $bg; +$bg1: $black; $text: $fg; -$outline: $black_a; +$outline: $yellow_a; diff --git a/home/home.nix b/home/home.nix index e2255cf..8fc80dc 100644 --- a/home/home.nix +++ b/home/home.nix @@ -266,9 +266,9 @@ in { "${pkgs.wlogout}/share/wlogout" "${pkgs.wlogout}/etc/wlogout" util.bg - normal.white + bright.yellow + util.bg normal.black - normal.magenta ] (builtins.readFile dots/wlogout/style.css)); }; diff --git a/home/programs/eww/scripts/workspaces b/home/programs/eww/scripts/workspaces index 57ee399..ac83a48 100755 --- a/home/programs/eww/scripts/workspaces +++ b/home/programs/eww/scripts/workspaces @@ -20,15 +20,15 @@ status() { mon=${monitormap[${workspaces[$1]}]} if [ "$focusedws" -eq "$1" ]; then - echo -n "#d3c6aa" + echo -n "#ffd292" # echo -n "${colors[$mon]}" else # echo -n "${dimmed[$mon]}" - echo -n "#3a515d" + echo -n "#da827a" fi else # echo -n "$empty" - echo -n "#232a2e" + echo -n "#202e2f" fi } diff --git a/system/quiver.nix b/system/quiver.nix index 9e22eab..2f22071 100644 --- a/system/quiver.nix +++ b/system/quiver.nix @@ -49,7 +49,7 @@ hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; environment.sessionVariables = rec { - ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "'fg=5'"; + ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=5"; WLR_NO_HARDWARE_CURSORS = "1"; GBM_BACKEND = "nvidia-drm"; NVD_BACKEND = "direct";