home/programs/fuzzel: theme with base16
This commit is contained in:
parent
05e4923703
commit
c0c6a9b352
1 changed files with 17 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
inputs,
|
||||
nixosConfig,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
|
@ -8,7 +10,22 @@
|
|||
settings = {
|
||||
main = {
|
||||
terminal = lib.getExe pkgs.foot;
|
||||
use-bold = true;
|
||||
dpi-aware = "auto";
|
||||
font = "monospace:size=14";
|
||||
};
|
||||
colors = let
|
||||
inherit (inputs.basix.schemeData.base16.${nixosConfig.theme.scheme}) palette;
|
||||
in {
|
||||
background = "${palette.base00}ff";
|
||||
text = "${palette.base05}ff";
|
||||
input = "${palette.base05}ff";
|
||||
selection = "${palette.base02}ff";
|
||||
selection-text = "${palette.base07}ff";
|
||||
selection-match = "${palette.base0D}ff";
|
||||
border = "${palette.base0E}ff";
|
||||
};
|
||||
border.width = 5;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue