alacritty: move to new theme module

This commit is contained in:
Aly Raffauf 2024-05-04 20:51:15 -04:00
parent 7d12d5d180
commit c7b9a639e4
2 changed files with 9 additions and 4 deletions

View file

@ -14,18 +14,18 @@
settings = {
colors = {
primary = {
foreground = "#fafafa";
background = "#232634";
foreground = "${config.alyraffauf.desktop.theme.colors.text}";
background = "${config.alyraffauf.desktop.theme.colors.background}";
};
transparent_background_colors = true;
draw_bold_text_with_bright_colors = true;
};
font = {
normal = {
family = "NotoSansMNerdFont";
family = "${config.alyraffauf.desktop.theme.terminalFont.name}";
style = "Regular";
};
size = 11;
size = config.alyraffauf.desktop.theme.terminalFont.size;
};
selection.save_to_clipboard = true;
window = {

View file

@ -96,6 +96,11 @@
default = "#FAFAFA";
type = lib.types.str;
};
background = lib.mkOption {
description = "Background color.";
default = "#232634";
type = lib.types.str;
};
primary = lib.mkOption {
description = "Primary color.";
default = "#CA9EE6";