From c348eb69d722654f697d7987b13ea3d0347baf03 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 10 Jul 2024 00:11:03 -0400 Subject: [PATCH] Revert "zathura: Fix opaque highlight color" Shouldn't be needed anymore now that we're using the latest stylix commit. Note that I don't care enough about this to use 0.3 highlight transparency instead of 0.5. --- home/zathura.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/home/zathura.nix b/home/zathura.nix index 2a86b267..66e74ba1 100644 --- a/home/zathura.nix +++ b/home/zathura.nix @@ -1,12 +1,3 @@ -{ config, lib, ... }: - -let - inherit (lib) mkForce; - - highlightTransparency = "0.3"; - getColorCh = colorName: channel: config.lib.stylix.colors."${colorName}-rgb-${channel}"; - rgba = color: ''rgba(${getColorCh color "r"}, ${getColorCh color "g"}, ${getColorCh color "b"}, ${highlightTransparency})''; -in { programs.zathura = { enable = true; @@ -17,9 +8,6 @@ in statusbar-basename = true; render-loading = false; scroll-step = 120; - - highlight-color = mkForce (rgba "base0A"); - highlight-active-color = mkForce (rgba "base0D"); }; }; }