diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..ecf97f0 --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,10 @@ +import = ["colors.toml"] + +[font] +size = 16.0 + +[font.normal] +family = "JetBrainsMono Nerd Font" + +[window] +opacity = 0.8 diff --git a/.config/alacritty/colors.toml b/.config/alacritty/colors.toml new file mode 100644 index 0000000..13cee9a --- /dev/null +++ b/.config/alacritty/colors.toml @@ -0,0 +1,39 @@ +# Start flavours +# Base16 Catppuccin - alacritty color config +# Pocco81 (https://github.com/pocco81) + +[colors] +draw_bold_text_with_bright_colors = false + +# Default colors +[colors.primary] +background = '0x1e1e28' +foreground = '0xd7dae0' + +# Colors the cursor will use if `custom_cursor_colors` is true +[colors.cursor] +text = '0x1e1e28' +cursor = '0xd7dae0' + +# Normal colors +[colors.normal] +black = '0x1e1e28' +red = '0xf28fad' +green = '0xabe9b3' +yellow = '0xfae3b0' +blue = '0x96cdfb' +magenta = '0xddb6f2' +cyan = '0xb5e8e0' +white = '0xd7dae0' + +# Bright colors +[colors.bright] +black = '0x575268' +red = '0xf8bd96' +green = '0x1a1826' +yellow = '0x302d41' +blue = '0x6e6c7c' +magenta = '0xf5e0dc' +cyan = '0xf2cdcd' +white = '0xc9cbff' +# End flavours