switch to simpler color scheme

This commit is contained in:
Tim Schubert 2022-11-07 16:32:53 +01:00
parent f8333ce288
commit 14a5877b50
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
5 changed files with 34 additions and 71 deletions

View file

@ -0,0 +1,26 @@
# The 'GNOME Light" theme from GNOME terminal.
[primary]
foreground = '#171421'
background = '#ffffea'
bright_foreground = '#5e5c64'
[normal]
black = '#171421'
red = '#c01c28'
green = '#26a269'
yellow = '#a2734c'
blue = '#12488b'
magenta = '#a347ba'
cyan = '#2aa1b3'
white = '#d0cfcc'
[bright]
black = '#5e5c64'
red = '#f66151'
green = '#33d17a'
yellow = '#e9ad0c'
blue = '#2a7bde'
magenta = '#c061cb'
cyan = '#33c7de'
white = '#ffffff'

View file

@ -27,86 +27,21 @@ in
style = "Regular"; style = "Regular";
}; };
bold = { bold = {
family = "Source Code Pro"; family = "Jetbrains Mono";
style = "Bold"; style = "Bold";
}; };
italic = { italic = {
family = "Source Code Pro"; family = "Jetbrains Mono";
style = "Italic"; style = "Italic";
}; };
bold_italic = { bold_italic = {
family = "Source Code Pro"; family = "Jetbrains Mono";
style = "Bold Italic"; style = "Bold Italic";
}; };
}; };
shell.program = "tmux"; shell.program = "tmux";
window.decorations = "none"; window.decorations = "none";
colors = { colors = lib.trivial.importTOML ./colors.toml;
# Base16 Spacemacs 256 - alacritty color config
# Nasser Alshammari (https://github.com/nashamri/spacemacs-theme)
# Default colors
primary = {
background = "0x1f2022";
foreground = "0xa3a3a3";
};
# Colors the cursor will use if `custom_cursor_colors` is true
cursor = {
text = "0x1f2022";
cursor = "0xa3a3a3";
};
# Normal colors
normal = {
black = "0x1f2022";
red = "0xf2241f";
green = "0x67b11d";
yellow = "0xb1951d";
blue = "0x4f97d7";
magenta = "0xa31db1";
cyan = "0x2d9574";
white = "0xa3a3a3";
};
# Bright colors
bright = {
black = "0x585858";
red = "0xf2241f";
green = "0x67b11d";
yellow = "0xb1951d";
blue = "0x4f97d7";
magenta = "0xa31db1";
cyan = "0x2d9574";
white = "0xf8f8f8";
};
indexed_colors = [
{
index = 16;
color = "0xffa500";
}
{
index = 17;
color = "0xb03060";
}
{
index = 18;
color = "0x282828";
}
{
index = 19;
color = "0x444155";
}
{
index = 20;
color = "0xb8b8b8";
}
{
index = 21;
color = "0xe8e8e8";
}
];
};
}; };
}; };
}; };

View file

@ -28,6 +28,7 @@ in
navigate = true; # use n and N to move between diff sections navigate = true; # use n and N to move between diff sections
side-by-side = false; side-by-side = false;
line-numbers = true; line-numbers = true;
light = true;
}; };
diff = { diff = {
renames = "copies"; renames = "copies";

View file

@ -13,7 +13,6 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
gtk = { gtk = {
enable = true; enable = true;
theme.name = "Adwaita-dark";
}; };
}; };
} }

View file

@ -1,7 +1,9 @@
theme = "acme"
[editor] [editor]
line-number = "relative" line-number = "relative"
mouse = true mouse = true
auto-completion = true auto-completion = true
[keys.normal] [keys.normal]
C-q = [ "goto_prev_paragraph", "goto_next_paragraph", ":reflow 80" ] C-q = [ "goto_prev_paragraph", "goto_next_paragraph", ":reflow 80" ]