mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
50 lines
1.1 KiB
Nix
Executable file
50 lines
1.1 KiB
Nix
Executable file
{ flake, ... }:
|
|
let
|
|
inherit (flake.config.aesthetics.themes)
|
|
currentTheme
|
|
palettes
|
|
font
|
|
;
|
|
|
|
el = palettes.${currentTheme}.colours;
|
|
in
|
|
{
|
|
font = font.name;
|
|
indicator-idle-visible = true;
|
|
indicator-radius = 100;
|
|
indicator-thickness = 20;
|
|
show-failed-attempts = true;
|
|
|
|
bs-hl-color = el.base08;
|
|
color = el.base01;
|
|
key-hl-color = el.base0E;
|
|
|
|
caps-lock-bs-hl-color = el.base08;
|
|
caps-lock-key-hl-color = el.base0E;
|
|
|
|
inside-color = el.base01;
|
|
inside-clear-color = el.base01;
|
|
inside-caps-lock-color = el.base01;
|
|
inside-ver-color = el.base01;
|
|
inside-wrong-color = el.base01;
|
|
|
|
line-color = el.base01;
|
|
line-clear-color = el.base01;
|
|
line-caps-lock-color = el.base01;
|
|
line-ver-color = el.base01;
|
|
line-wrong-color = el.base01;
|
|
|
|
ring-color = el.base00;
|
|
ring-clear-color = el.base00;
|
|
ring-caps-lock-color = el.base00;
|
|
ring-ver-color = el.base00;
|
|
ring-wrong-color = el.base00;
|
|
|
|
separator-color = "00000000";
|
|
|
|
text-color = el.base05;
|
|
text-clear-color = el.base05;
|
|
text-caps-lock-color = el.base05;
|
|
text-ver-color = el.base05;
|
|
text-wrong-color = el.base05;
|
|
}
|