From 7373c7b6538346a3052cb8e86f7fceb940bfb14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Wed, 19 Jun 2024 00:01:02 +0200 Subject: [PATCH] alacritty: use dark and light themes from folke/tokyonight.nvim --- alacritty/.config/alacritty/dark.toml | 44 ++++++++++++++++++++++++-- alacritty/.config/alacritty/light.toml | 44 ++++++++++++++++++++++++-- 2 files changed, 82 insertions(+), 6 deletions(-) diff --git a/alacritty/.config/alacritty/dark.toml b/alacritty/.config/alacritty/dark.toml index b39b488..289f009 100644 --- a/alacritty/.config/alacritty/dark.toml +++ b/alacritty/.config/alacritty/dark.toml @@ -1,3 +1,41 @@ -import = [ - "~/.config/alacritty/themes/themes/tokyo-night-storm.toml" -] +# (https://github.com/folke/tokyonight.nvim/blob/main/extras/alacritty/tokyonight_storm.toml) +# TokyoNight Alacritty Colors +# Default colors +[colors.primary] +background = '#24283b' +foreground = '#c0caf5' + +#[colors.cursor] +#cursor = '#c0caf5' +#text = '#24283b' + +# Normal colors +[colors.normal] +black = '#1d202f' +red = '#f7768e' +green = '#9ece6a' +yellow = '#e0af68' +blue = '#7aa2f7' +magenta = '#bb9af7' +cyan = '#7dcfff' +white = '#a9b1d6' + +# Bright colors +[colors.bright] +black = '#414868' +red = '#f7768e' +green = '#9ece6a' +yellow = '#e0af68' +blue = '#7aa2f7' +magenta = '#bb9af7' +cyan = '#7dcfff' +white = '#c0caf5' + +# Indexed Colors +[[colors.indexed_colors]] +index = 16 +color = '#ff9e64' + +[[colors.indexed_colors]] +index = 17 +color = '#db4b4b' diff --git a/alacritty/.config/alacritty/light.toml b/alacritty/.config/alacritty/light.toml index 3512d19..444f0e3 100644 --- a/alacritty/.config/alacritty/light.toml +++ b/alacritty/.config/alacritty/light.toml @@ -1,3 +1,41 @@ -import = [ - "~/.config/alacritty/themes/themes/alabaster.toml" -] +# (https://github.com/folke/tokyonight.nvim/blob/main/extras/alacritty/tokyonight_day.toml) +# TokyoNight Alacritty Colors +# Default colors +[colors.primary] +background = '#e1e2e7' +foreground = '#3760bf' + +#[colors.cursor] +#cursor = '#3760bf' +#text = '#e1e2e7' + +# Normal colors +[colors.normal] +black = '#e9e9ed' +red = '#f52a65' +green = '#587539' +yellow = '#8c6c3e' +blue = '#2e7de9' +magenta = '#9854f1' +cyan = '#007197' +white = '#6172b0' + +# Bright colors +[colors.bright] +black = '#a1a6c5' +red = '#f52a65' +green = '#587539' +yellow = '#8c6c3e' +blue = '#2e7de9' +magenta = '#9854f1' +cyan = '#007197' +white = '#3760bf' + +# Indexed Colors +[[colors.indexed_colors]] +index = 16 +color = '#b15c00' + +[[colors.indexed_colors]] +index = 17 +color = '#c64343'