diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index c13f879..1b1cad9 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -1,36 +1,10 @@ -[colors.primary] -background = '#eeeeee' -foreground = '#222222' +[general] +import = [ + "font.toml", + "colors.toml" +] -[colors.cursor] -text = '#eeeeee' -cursor = '#000000' -[colors.normal] -black = '#d4d4d4' -red = '#ba2c69' -green = '#657622' -yellow = '#9b5b1b' -blue = '#2074a5' -magenta = '#8243cf' -cyan = '#257d6f' -white = '#525252' - -[colors.bright] -black = '#9e9e9e' -red = '#da407f' -green = '#7b8e2b' -yellow = '#ba6f25' -blue = '#2d8cc5' -magenta = '#985fe6' -cyan = '#2e9786' -white = '#080808' - -[font] -size = 18 - -[font.normal] -family = "Iosevka Term SS08" [window] decorations = "none" diff --git a/.config/alacritty/colors.toml b/.config/alacritty/colors.toml new file mode 100644 index 0000000..d4f69f3 --- /dev/null +++ b/.config/alacritty/colors.toml @@ -0,0 +1,27 @@ +[colors.primary] +background = '#eeeeee' +foreground = '#222222' + +[colors.cursor] +text = '#eeeeee' +cursor = '#000000' + +[colors.normal] +black = '#d4d4d4' +red = '#ba2c69' +green = '#657622' +yellow = '#9b5b1b' +blue = '#2074a5' +magenta = '#8243cf' +cyan = '#257d6f' +white = '#525252' + +[colors.bright] +black = '#9e9e9e' +red = '#da407f' +green = '#7b8e2b' +yellow = '#ba6f25' +blue = '#2d8cc5' +magenta = '#985fe6' +cyan = '#2e9786' +white = '#080808' diff --git a/.config/alacritty/font.toml b/.config/alacritty/font.toml new file mode 100644 index 0000000..9d1ceb4 --- /dev/null +++ b/.config/alacritty/font.toml @@ -0,0 +1,5 @@ +[font] +size = 18 + +[font.normal] +family = "Iosevka Term SS08"