add alacritty config
This commit is contained in:
parent
57cc17ff65
commit
a55b5e42d0
2 changed files with 49 additions and 0 deletions
10
.config/alacritty/alacritty.toml
Normal file
10
.config/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import = ["colors.toml"]
|
||||||
|
|
||||||
|
[font]
|
||||||
|
size = 16.0
|
||||||
|
|
||||||
|
[font.normal]
|
||||||
|
family = "JetBrainsMono Nerd Font"
|
||||||
|
|
||||||
|
[window]
|
||||||
|
opacity = 0.8
|
39
.config/alacritty/colors.toml
Normal file
39
.config/alacritty/colors.toml
Normal file
|
@ -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
|
Loading…
Reference in a new issue