dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 3db41cb8c14dd4cc705c9ce5e24ecd91cba0369f
parent 6488cb8443bc1fa8350739d7ef638415b85772ea
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed,  5 Jun 2024 17:15:45 -0700

alacritty: copy colours from iTerm2 variant

This updates the alacritty theme for Solarized Osaka to match the
colours in the iTerm2 variant.

Diffstat:
M.config/alacritty/solarized-osaka.toml | 56++++++++++++++++++++++++++++++++++----------------------
1 file changed, 34 insertions(+), 22 deletions(-)

diff --git a/.config/alacritty/solarized-osaka.toml b/.config/alacritty/solarized-osaka.toml @@ -1,29 +1,41 @@ # Colors (Solarized Osaka) -# HSL convert HEX using https://colordesigner.io/ -# Default colors [colors.primary] -background = '#00141a' #color.base04 -foreground = '#839495' #color.fg +background = '#222334' +foreground = '#cad2f2' + +[colors.cursor] +cursor = '#cad2f2' +text = '#222334' + +[colors.selection] +background = '#303e72' +text = '#cad2f2' + +[colors.search.matches] +foreground = '#1b1c29' +background = '#f6c982' + +[colors.search.focused_match] +foreground = '#1b1c29' +background = '#ffff00' -# Normal colors [colors.normal] -black = '#00141a' #color.base04 -red = '#dc312e' #color.red -green = '#859900' #color.green -yellow = '#b38600' #color.yellow -blue = '#278bd3' #color.blue -magenta = '#d33682' #color.magenta -cyan = '#2aa298' #color.cyan -white = '#ede7d4' #color.base2 +black = '#1b1c29' +red = '#ed7d81' +green = '#cae697' +yellow = '#f6c982' +blue = '#8aa8f8' +magenta = '#b99af8' +cyan = '#9bdef8' +white = '#838ab4' -# Bright colors [colors.bright] -black = '#002d38' #color.base03 -red = '#f65351' #color.red300 -green = '#b7fa00' #color.green300 -yellow = '#ffbf00' #color.yellow300 -blue = '#47adf5' #color.blue300 -magenta = '#f254a1' #color.magenta300 -cyan = '#2beede' #color.cyan300 -white = '#fdf6e2' #color.base3 +black = '#454970' +red = '#ed7d81' +green = '#cae697' +yellow = '#f6c982' +blue = '#8aa8f8' +magenta = '#b99af8' +cyan = '#9bdef8' +white = '#cad2f2'