Compare commits

..

2 commits

3 changed files with 34 additions and 22 deletions

View file

@ -42,5 +42,5 @@ in {
inherit wrapped-helix fish; inherit wrapped-helix fish;
}; };
# helix as the only editor, a reasonable choice. # helix as the only editor, a reasonable choice.
environment.sessionVariables.EDITOR = pkgs.lib.getExe' wrapped-helix "hx"; environment.sessionVariables.EDITOR = "hx";
} }

View file

@ -8,7 +8,7 @@
inherit (config.meta.mainUser) username; inherit (config.meta.mainUser) username;
cfg = config.modules.system.programs.terminals.foot; cfg = config.modules.system.programs.terminals.foot;
colours = config.modules.style.colorScheme.colors; theme-colors = config.modules.style.colorScheme.colors;
foot-config = pkgs.writeText "foot.ini" (lib.generators.toINI {} { foot-config = pkgs.writeText "foot.ini" (lib.generators.toINI {} {
main = { main = {
@ -90,27 +90,39 @@
select-word = "BTN_LEFT-2"; select-word = "BTN_LEFT-2";
select-word-whitespace = "Control+BTN_LEFT-2"; select-word-whitespace = "Control+BTN_LEFT-2";
}; };
# 16=fab387
# 17=f5e0dc
colors = { colors = {
background = colours.base00; # base color foreground = theme-colors.base05; # Text
foreground = colours.base05; # text color background = theme-colors.base00; # Base
regular0 = theme-colors.base03; # Surface 1
regular1 = theme-colors.base08; # red
regular2 = theme-colors.base0B; # green
regular3 = theme-colors.base0A; # yellow
regular4 = theme-colors.base0D; # blue
regular5 = "f5c2e7"; # pink
regular6 = "94e2d5"; # teal
regular7 = "bac2de"; # Subtext 1
regular0 = colours.base03; # black bright0 = theme-colors.Surface2; # Surface 2
regular1 = colours.base08; # red bright1 = theme-colors.base08; # red
regular2 = colours.base0B; # green bright2 = theme-colors.base0B; # green
regular3 = colours.base0A; # yellow bright3 = theme-colors.yellow; # yellow
regular4 = colours.base0D; # blue bright4 = "89b4fa"; # blue
regular5 = colours.base0F; #magenta bright5 = "f5c2e7"; # pink
regular6 = colours.base0C; #cyan bright6 = "94e2d5"; # teal
regular7 = colours.base06; #white bright7 = "a6adc8"; # Subtext 0
bright0 = colours.base04; # Surface 2 selection-foreground = "cdd6f4";
bright1 = colours.base08; # red selection-background = "414356";
bright2 = colours.base0B; # green
bright3 = colours.base0A; # yellow search-box-no-match = "11111b f38ba8";
bright4 = colours.base0D; # blue search-box-match = "cdd6f4 313244";
bright5 = colours.base0F; # pink
bright6 = colours.base0C; # teal jump-labels = "11111b fab387";
bright7 = colours.base07; # Subtext 0 urls = "89b4fa";
alpha = 1.0; alpha = 1.0;
}; };

View file

@ -14,8 +14,8 @@
base07 = "#b4befe"; # lavender base07 = "#b4befe"; # lavender
base08 = "#f38ba8"; # red base08 = "#f38ba8"; # red
base09 = "#fab387"; # peach base09 = "#fab387"; # peach
base0A = "#a6e3a1"; # yellow base0A = "#f9e2af"; # yellow
base0B = "#94e2d5"; # green base0B = "#a6e3a1"; # green
base0C = "#a6e3a1"; # teal base0C = "#a6e3a1"; # teal
base0D = "#89b4fa"; # blue base0D = "#89b4fa"; # blue
base0E = "#cba6f7"; # mauve base0E = "#cba6f7"; # mauve