change(hyprland): active border uses base 6

This commit is contained in:
2026-01-10 23:21:57 +01:00
parent 353f449f80
commit 9151cb04eb
2 changed files with 15 additions and 3 deletions

View File

@@ -1,4 +1,12 @@
{ inputs, pkgs, ... }:
{
inputs,
pkgs,
config,
...
}:
let
base16 = config.modules.base16;
in
{
home.packages = [
pkgs.hyprcursor
@@ -23,7 +31,8 @@
gaps_in = 1;
gaps_out = 1;
border_size = 1;
# col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
"col.active_border" =
"rgb(${toString base16.rgb."06".r},${toString base16.rgb."06".g},${toString base16.rgb."06".b})";
# col.inactive_border = rgba(595959aa)
resize_on_border = false;
allow_tearing = true;