diff --git a/alacritty/.gitignore b/alacritty/.gitignore index 74893f43f..f9d5b78b3 100644 --- a/alacritty/.gitignore +++ b/alacritty/.gitignore @@ -1 +1 @@ -host.toml +themes diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index f664b25fc..c16515b4c 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -1,38 +1,8 @@ [general] live_config_reload = true -import = [] - -[[colors.indexed_colors]] -color = "0xd18616" -index = 16 - -[[colors.indexed_colors]] -color = "0xf97583" -index = 17 - -[colors.bright] -black = "0x959da5" -blue = "0x79b8ff" -cyan = "0x56d4dd" -green = "0x85e89d" -magenta = "0xb392f0" -red = "0xf97583" -white = "0xfafbfc" -yellow = "0xffea7f" - -[colors.normal] -black = "0x586069" -blue = "0x2188ff" -cyan = "0x39c5cf" -green = "0x34d058" -magenta = "0xb392f0" -red = "0xea4a5a" -white = "0xd1d5da" -yellow = "0xffea7f" - -[colors.primary] -background = "0x24292e" -foreground = "0xd1d5da" +import = [ + "themes/themes/dark_pastels.toml" +] [cursor] unfocused_hollow = true diff --git a/scripts/alacritty.sh b/scripts/alacritty.sh index 4da674a77..ab8bc15f2 100644 --- a/scripts/alacritty.sh +++ b/scripts/alacritty.sh @@ -28,5 +28,7 @@ main_pacman() { } main() { + mkdir -p ~/.config/alacritty/themes + git clone https://github.com/alacritty/alacritty-theme ~/.config/alacritty/themes configfile alacritty }