From 1b70d8c5cf7cb53f46edf7b42db3c2874e4e6e79 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Thu, 13 Mar 2025 13:39:33 +0100 Subject: [PATCH] darker color for hyprlock Former-commit-id: 967879b3f479ac10af5b694250cbaa73ec9d26a8 --- home/system/hyprlock/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/system/hyprlock/default.nix b/home/system/hyprlock/default.nix index 35afa5e..d0fcf0e 100644 --- a/home/system/hyprlock/default.nix +++ b/home/system/hyprlock/default.nix @@ -1,7 +1,7 @@ # Hyprlock is a lockscreen for Hyprland { config, lib, ... }: let - foreground = "rgba(216, 222, 233, 0.70)"; + foreground = "rgba(26, 22, 23, 0.70)"; font = config.stylix.fonts.serif.name; in { programs.hyprlock = { @@ -71,8 +71,8 @@ in { dots_size = 0.2; # Scale of input-field height, 0.2 - 0.8 dots_spacing = 0.2; # Scale of dots' absolute size, 0.0 - 1.0 dots_center = true; - outer_color = "rgba(255, 255, 255, 0)"; - inner_color = "rgba(255, 255, 255, 0.1)"; + outer_color = "rgba(25, 25, 25, 0)"; + inner_color = "rgba(25, 25, 25, 0.1)"; font_color = foreground; fade_on_empty = false; font_family = font + " Bold";