From ab801d243ca151f1ea298303fa134a7e61241518 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Mon, 1 Sep 2025 12:23:43 +0200 Subject: [PATCH] add alacritty config --- alacritty/.config/alacritty/alacritty.toml | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 alacritty/.config/alacritty/alacritty.toml diff --git a/alacritty/.config/alacritty/alacritty.toml b/alacritty/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..c209a61 --- /dev/null +++ b/alacritty/.config/alacritty/alacritty.toml @@ -0,0 +1,55 @@ +[env] +TERM = "xterm-256color" + +[window] +padding.x = 10 +padding.y = 10 + +decorations = "Buttonless" + + +#opacity = 0.30 +#opacity = 0.4 +opacity = 0.7 +blur = true + +#option_as_alt = "Both" + +[font] +normal.family = "Comic Code" +size=15 + +#theme +# +#https://github.com/alacritty/alacritty-theme/blob/4091fddff8da892d5594e94116927c7445620867/themes/citylights.toml + +# Default colors +[colors.primary] +background = '#171d23' +foreground = '#ffffff' + +# Cursor colors +[colors.cursor] +text = '#fafafa' +cursor = '#008b94' + +# Normal colors +[colors.normal] +black = '#333f4a' +red = '#d95468' +green = '#8bd49c' +blue = '#539afc' +magenta = '#b62d65' +cyan = '#70e1e8' +white = '#b7c5d3' + +# Bright colors +[colors.bright] +black = '#41505e' +red = '#d95468' +green = '#8bd49c' +yellow = '#ebbf83' +blue = '#5ec4ff' +magenta = '#e27e8d' +cyan = '#70e1e8' +white = '#ffffff'