diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-05-15 20:56:22 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-05-15 20:56:22 -0700 |
| commit | 28ea68b9a57b37605f2864ea77beaba435064d98 (patch) | |
| tree | 37265318c9054f27bd8c599d8798115a87c38113 /home/kitty.nix | |
| parent | 87fd75253ad4e8f1266517c9a9ae4a2478cb96b7 (diff) | |
Set kitty fg/bg colors
Diffstat (limited to 'home/kitty.nix')
| -rw-r--r-- | home/kitty.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/home/kitty.nix b/home/kitty.nix index 852f554..cb569cc 100644 --- a/home/kitty.nix +++ b/home/kitty.nix @@ -7,6 +7,9 @@ font = { name = "monospace"; size = 8.0; }; settings = let c = config.theme.colors; in { + foreground = "#${c.fg}"; + background = "#000000"; + color0 = "#${c.black}"; color1 = "#${c.red}"; color2 = "#${c.green}"; |