diff --git a/alacritty/.config/alacritty/dark.toml b/alacritty/.config/alacritty/dark.toml index 7b4d1f2..c14ec80 100644 --- a/alacritty/.config/alacritty/dark.toml +++ b/alacritty/.config/alacritty/dark.toml @@ -1,26 +1,76 @@ -# https://github.com/zenbones-theme/zenbones.nvim/blob/main/extras/alacritty/zenbones_dark.toml -# This file is auto-generated by shipwright.nvim -[colors.bright] -black = "#403833" -red = "#E8838F" -green = "#8BAE68" -yellow = "#D68C67" -blue = "#61ABDA" -magenta = "#CF86C1" -cyan = "#65B8C1" -white = "#888F94" -[colors.cursor] -cursor = "#C4CACF" -text = "#1C1917" -[colors.normal] -black = "#1C1917" -blue = "#6099C0" -cyan = "#66A5AD" -green = "#819B69" -magenta = "#B279A7" -red = "#DE6E7C" -white = "#B4BDC3" -yellow = "#B77E64" +# https://github.com/alacritty/alacritty-theme/blob/master/themes/meliora.toml [colors.primary] -background = "#141D1C" -foreground = "#9BAFAC" +background = '#1c1917' +foreground = '#d6d0cd' +# Bright and dim foreground colors +dim_foreground = '#d6d0cd' +bright_foreground = '#d6d0cd' + +# Cursor colors +[colors.cursor] +text = '#1c1917' +cursor = '#d6d0cd' + +[colors.vi_mode_cursor] +text = '#1c1917' +cursor = '#d6d0cd' + +# Search colors +[colors.search] +matches = { foreground = '#1c1917', background = '#24201e' } +focused_match = { foreground = '#1c1917', background = '#2a2522' } + +[colors.footer_bar] +foreground = '#1c1917' +background = '#b8aea8' + +# Keyboard regex hints +[colors.hints] +start = { foreground = '#1c1917', background = '#c4b392' } +end = { foreground = '#1c1917', background = '#24201e' } + +# Selection colors +[colors.selection] +text = '#d6d0cd' +background = '#2a2522' + +# Normal colors +[colors.normal] +black = '#2a2421' +red = '#d49191' +green = '#b6b696' +yellow = '#c4b392' +blue = '#9e96b6' +magenta = '#b696b1' +cyan = '#98acc8' +white = '#ddd9d6' + +# Bright colors +[colors.bright] +black = '#2e2622' +red = '#d89393' +green = '#b9b99b' +yellow = '#c8b692' +blue = '#a299b9' +magenta = '#b997b4' +cyan = '#9bb0ca' +white = '#e1dbd9' + +# Dim colors +[colors.dim] +black = '#2a2421' +red = '#d18989' +green = '#727246' +yellow = '#c1b090' +blue = '#9b92b3' +magenta = '#b393ad' +cyan = '#95a9c5' +white = '#e3d5ce' + +[[colors.indexed_colors]] +index = 16 +color = '#c4b392' + +[[colors.indexed_colors]] +index = 17 +color = '#ddd9d6'