My dotfiles for Arch Linux

Add Alacritty theme

Signed-off-by: Jan Ehrhardt <59441+jehrhardt@users.noreply.github.com>

+29 -1
+1 -1
dot_config/alacritty/alacritty.toml
··· 1 - general.import = ["~/.config/omarchy/current/theme/alacritty.toml"] 1 + general.import = ["./theme.toml"] 2 2 3 3 [env] 4 4 TERM = "xterm-256color"
+28
dot_config/alacritty/theme.toml
··· 1 + [colors] 2 + [colors.primary] 3 + background = '#111c18' 4 + foreground = '#C1C497' 5 + 6 + [colors.normal] 7 + black = "#23372B" 8 + red = "#FF5345" 9 + green = "#549e6a" 10 + yellow = "#459451" 11 + blue = "#509475" 12 + magenta = "#D2689C" 13 + cyan = "#2DD5B7" 14 + white = "#F6F5DD" 15 + 16 + [colors.bright] 17 + black = "#53685B" 18 + red = "#db9f9c" 19 + green = "#143614" 20 + yellow = "#E5C736" 21 + blue = "#ACD4CF" 22 + magenta = "#75bbb3" 23 + cyan = "#8CD3CB" 24 + white = "#9eebb3" 25 + 26 + [colors.cursor] 27 + text = "#000000" 28 + cursor = "#D7C995"