mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
alacritty: move to new theme module
This commit is contained in:
parent
7d12d5d180
commit
c7b9a639e4
|
@ -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 = {
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue