From e0765740b83165ec9887a024050a0d6eaa971785 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Fri, 19 Apr 2024 13:28:49 +0200 Subject: [PATCH] home-manager: terminal: foot: switch to light theme Signed-off-by: Christoph Heiss --- system/home-manager/terminal.nix | 43 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/system/home-manager/terminal.nix b/system/home-manager/terminal.nix index f3d5dc6..f1cf91a 100644 --- a/system/home-manager/terminal.nix +++ b/system/home-manager/terminal.nix @@ -23,31 +23,30 @@ in { scrollback.lines = 0; cursor = { style = "underline"; - color = "ffffff ffffff"; - underline-thickness = 1; + underline-thickness = 2; }; mouse.hide-when-typing = "yes"; + # Based on https://github.com/sonph/onehalf colors = { - foreground = "c0caf5"; - background = "1a1b26"; - regular0 = "15161e"; # black - regular1 = "f7768e"; # red - regular2 = "9ece6a"; # green - regular3 = "e0af68"; # yellow - regular4 = "7aa2f7"; # blue - regular5 = "bb9af7"; # magenta - regular6 = "7dcfff"; # cyan - regular7 = "a9b1d6"; # white - bright0 = "414868"; # bright black - bright1 = "f7768e"; # bright red - bright2 = "9ece6a"; # bright green - bright3 = "e0af68"; # bright yellow - bright4 = "7aa2f7"; # bright blue - bright5 = "bb9af7"; # bright magenta - bright6 = "7dcfff"; # bright cyan - bright7 = "c0caf5"; # bright white - dim0 = "ff9e64"; - dim1 = "db4b4b"; + alpha = 0.96; + foreground = "383a42"; + background = "fafafa"; + regular0 = "383a42"; # black + regular1 = "e45649"; # red + regular2 = "50a14f"; # green + regular3 = "c18401"; # yellow + regular4 = "0184bc"; # blue + regular5 = "a626a4"; # magenta + regular6 = "0997b3"; # cyan + regular7 = "fafafa"; # white + bright0 = "383a42"; # bright black + bright1 = "e45649"; # bright red + bright2 = "50a14f"; # bright green + bright3 = "c18401"; # bright yellow + bright4 = "0184bc"; # bright blue + bright5 = "a626a4"; # bright magenta + bright6 = "0997b3"; # bright cyan + bright7 = "fafafa"; # bright white }; }; };