From 18d543a21202335446f6b73a7174fad4de33f34e Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 8 Nov 2023 13:44:28 +0300 Subject: [PATCH] Fix theme --- machines/enka/fuzzel/default.nix | 2 +- themes/gruvbox.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/enka/fuzzel/default.nix b/machines/enka/fuzzel/default.nix index a86e9c3..5f89184 100644 --- a/machines/enka/fuzzel/default.nix +++ b/machines/enka/fuzzel/default.nix @@ -19,7 +19,7 @@ homeConfiguration "nixos" { background = theme.background + theme.transparency; text = theme.foreground + theme.transparency; match = theme.activeHighlight + theme.transparency; - selection = theme.text + theme.transparency; + selection = theme.foreground + theme.transparency; selection-text = theme.background + theme.transparency; border = theme.activeHighlight + theme.transparency; }; diff --git a/themes/gruvbox.nix b/themes/gruvbox.nix index d079562..70754d9 100644 --- a/themes/gruvbox.nix +++ b/themes/gruvbox.nix @@ -2,7 +2,7 @@ transparency = "FF"; # OPAQUE background = "1D2021"; - text = "DDC7A1"; + foreground = "DDC7A1"; activeHighlight = "D79921"; inactiveHighlight = "928374";