Outsourced Alacritty color

This commit is contained in:
2026-05-03 19:12:05 +02:00
parent 2885a7d851
commit 51e3ce3311
3 changed files with 43 additions and 39 deletions
+39
View File
@@ -0,0 +1,39 @@
# XTerm's default colors
# Default colors
[colors.primary]
background = '#000000'
foreground = '#ffffff'
# Normal colors
[colors.normal]
black = '#000000'
red = '#cd0000'
green = '#00cd00'
yellow = '#cdcd00'
blue = '#0000ee'
magenta = '#cd00cd'
cyan = '#00cdcd'
white = '#e5e5e5'
# Bright colors
[colors.bright]
black = '#7f7f7f'
red = '#ff0000'
green = '#00ff00'
yellow = '#ffff00'
blue = '#5c5cff'
magenta = '#ff00ff'
cyan = '#00ffff'
white = '#ffffff'
# Dim colors
[colors.dim]
black = '#000000'
red = '#9a0000'
green = '#009a00'
yellow = '#9a9a00'
blue = '#0000b4'
magenta = '#9a009a'
cyan = '#009a9a'
white = '#b2b2b2'
-39
View File
@@ -19,42 +19,3 @@ style = "Light Italic"
family = "JetBrainsMono Nerd Font"
style = "Medium Italic"
# XTerm's default colors
# Default colors
[colors.primary]
background = '#000000'
foreground = '#ffffff'
# Normal colors
[colors.normal]
black = '#000000'
red = '#cd0000'
green = '#00cd00'
yellow = '#cdcd00'
blue = '#0000ee'
magenta = '#cd00cd'
cyan = '#00cdcd'
white = '#e5e5e5'
# Bright colors
[colors.bright]
black = '#7f7f7f'
red = '#ff0000'
green = '#00ff00'
yellow = '#ffff00'
blue = '#5c5cff'
magenta = '#ff00ff'
cyan = '#00ffff'
white = '#ffffff'
# Dim colors
[colors.dim]
black = '#000000'
red = '#9a0000'
green = '#009a00'
yellow = '#9a9a00'
blue = '#0000b4'
magenta = '#9a009a'
cyan = '#009a9a'
white = '#b2b2b2'
+4
View File
@@ -26,6 +26,10 @@ for option in "$@"; do
[ ! -d "$HOME/.config/alacritty" ] && mkdir -p "$HOME/.config/alacritty"
link "$PWD/alacritty/desktop.toml" "$HOME/.config/alacritty/desktop.toml"
;;
alacritty-color)
[ ! -d "$HOME/.config/alacritty" ] && mkdir -p "$HOME/.config/alacritty"
link "$PWD/alacritty/color.toml" "$HOME/.config/alacritty/color.toml"
;;
zsh)
mkdir -p "$HOME/.config/zsh"
mkdir -p "/etc/zsh"