diff options
Diffstat (limited to '')
-rw-r--r-- | modules/desktop/hyprlock.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/desktop/hyprlock.nix b/modules/desktop/hyprlock.nix index da0621c..8be2856 100644 --- a/modules/desktop/hyprlock.nix +++ b/modules/desktop/hyprlock.nix @@ -3,8 +3,8 @@ lib, ... }: let - fg = "rgb(${config.theme.colors.fg})"; - bg = "rgb(${config.theme.colors.bg})"; + text = "rgb(${config.theme.colors.text})"; + base = "rgb(${config.theme.colors.base})"; error = "rgb(${config.theme.colors.error})"; trans = "rgba(0,0,0,0)"; @@ -21,7 +21,7 @@ in { settings = { background = { path = config.theme.lockscreen; - color = bg; + color = base; blur_passes = 0; blur_size = 2; noise = 0; @@ -41,7 +41,7 @@ in { dots_rounding = -1; outer_color = trans; inner_color = trans; - font_color = fg; + font_color = text; fade_on_empty = false; placeholder_text = "Enter Password"; hide_input = false; @@ -62,7 +62,7 @@ in { # Date { text = "cmd[update:1000] echo \"$(date +\"%A, %B %d\")\""; - color = fg; + color = text; font_size = 20; font_family = config.theme.font.header; position = "0, -100"; @@ -72,7 +72,7 @@ in { # Clock { text = "cmd[update:1000] echo \"$(date +\"%k:%M:%S\")\""; - color = fg; + color = text; font_size = 90; font_family = config.theme.font.header; position = "0, -130"; |