mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
18 lines
300 B
Nix
Executable file
18 lines
300 B
Nix
Executable file
{ flake, ... }:
|
|
let
|
|
|
|
inherit (flake.config.aesthetics.themes)
|
|
currentThemes
|
|
palettes
|
|
;
|
|
|
|
el = palettes.${currentThemes.theme0}.colours;
|
|
in
|
|
{
|
|
gaps_in = 5;
|
|
gaps_out = 5;
|
|
border_size = 2;
|
|
"col.active_border" = "rgb(${el.base0E})";
|
|
"col.inactive_border" = "0xff${el.base02}";
|
|
|
|
}
|