alacritty: change colors, nvim: change rabbit file color

This commit is contained in:
Łukasz Pankowski 2025-03-29 12:42:53 +01:00
parent 31b699586e
commit da582e988b
3 changed files with 56 additions and 94 deletions

View File

@ -1,76 +1,31 @@
# https://github.com/alacritty/alacritty-theme/blob/master/themes/meliora.toml # Colors (Gruvbox dark)
# Default colors
[colors.primary] [colors.primary]
background = '#1c1917' # hard contrast background = = '#1d2021'
foreground = '#d6d0cd' # background = '#282828'
# Bright and dim foreground colors # soft contrast background = = '#32302f'
dim_foreground = '#d6d0cd' background = '#292522'
bright_foreground = '#d6d0cd' foreground = '#ebdbb2'
# 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 # Normal colors
[colors.normal] [colors.normal]
black = '#2a2421' black = '#282828'
red = '#d49191' red = '#cc241d'
green = '#b6b696' green = '#98971a'
yellow = '#c4b392' yellow = '#d79921'
blue = '#9e96b6' blue = '#458588'
magenta = '#b696b1' magenta = '#b16286'
cyan = '#98acc8' cyan = '#689d6a'
white = '#ddd9d6' white = '#a89984'
# Bright colors # Bright colors
[colors.bright] [colors.bright]
black = '#2e2622' black = '#928374'
red = '#d89393' red = '#fb4934'
green = '#b9b99b' green = '#b8bb26'
yellow = '#c8b692' yellow = '#fabd2f'
blue = '#a299b9' blue = '#83a598'
magenta = '#b997b4' magenta = '#d3869b'
cyan = '#9bb0ca' cyan = '#8ec07c'
white = '#e1dbd9' white = '#ebdbb2'
# 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'

View File

@ -1,26 +1,30 @@
# https://github.com/zenbones-theme/zenbones.nvim/blob/main/extras/alacritty/zenbones_light.toml # Colors (Alabaster)
# This file is auto-generated by shipwright.nvim # author tonsky
[colors.bright]
black = "#CFC1BA"
red = "#94253E"
green = "#3F5A22"
yellow = "#803D1C"
blue = "#1D5573"
magenta = "#7B3B70"
cyan = "#2B747C"
white = "#4F5E68"
[colors.cursor]
cursor = "#2C363C"
text = "#F0EDEC"
[colors.normal]
black = "#F0EDEC"
blue = "#286486"
cyan = "#3B8992"
green = "#4F6C31"
magenta = "#88507D"
red = "#A8334C"
white = "#2C363C"
yellow = "#944927"
[colors.primary] [colors.primary]
background = "#F0F1F1" background = '#F1F1F1' # changed
foreground = "#141D1C" foreground = '#434343'
[colors.cursor]
text = '#F7F7F7'
cursor = '#434343'
[colors.normal]
black = '#000000'
red = '#AA3731'
green = '#448C27'
yellow = '#CB9000'
blue = '#325CC0'
magenta = '#7A3E9D'
cyan = '#0083B2'
white = '#BBBBBB'
[colors.bright]
black = '#777777'
red = '#F05050'
green = '#60CB00'
yellow = '#FFBC5D'
blue = '#007ACC'
magenta = '#E64CE6'
cyan = '#00AACB'
white = '#FFFFFF'

View File

@ -17,6 +17,9 @@ return {
history = { switch = ';' }, history = { switch = ';' },
harpoon = { switch = 'f' }, harpoon = { switch = 'f' },
}, },
colors = {
file = '#5a418a',
},
}, },
keys = { keys = {
{ '<leader>1', function() rabbit_select(1) end }, { '<leader>1', function() rabbit_select(1) end },