adapts theme colors

This commit is contained in:
Dennis Schoepf 2025-11-04 09:16:16 +01:00
parent 0519ba5513
commit 9a3d3dbc35
2 changed files with 25 additions and 23 deletions

View file

@ -115,7 +115,8 @@
set --universal fish_color_param brmagenta # regular command parameters
set --universal fish_color_quote yellow # quoted blocks of text
set --universal fish_color_redirection brblack # IO redirections
set --universal fish_color_search_match --background brblack # highlight history search matches and the selected pager item (must be a background)
set --universal fish_color_search --bold --background=black --foreground=bryellow
set --universal fish_color_search_match --background black # highlight history search matches and the selected pager item (must be a background)
set --universal fish_color_selection --background magenta # when selecting text (in vi visual mode)
set --universal fish_color_cancel brblack # the '^C' indicator on a canceled command
set --universal fish_color_host brwhite # current host system in some of fish default prompts

View file

@ -2,23 +2,24 @@ local M = {}
local palette = {
fg = "#ffffff",
bg = "#0d0911",
bg_secondary = "#231d2b",
grey = "#605470",
grey_bright = "#847a91",
red = "#be0f58",
red_bright = "#e61565",
green = "#218b72",
green_bright = "#36d9b8",
yellow = "#d8a428",
yellow_bright = "#f0c674",
blue = "#1d74c5",
blue_bright = "#49a8dd",
magenta = "#9e3a96",
magenta_bright = "#d957ce",
cyan = "#2692a8",
cyan_bright = "#36c3d9",
silver = "#605470",
bg = "#0f0b15",
bg_secondary = "#1d202f",
grey = "#807c9f",
grey_bright = "#807c9f",
red = "#f47359",
red_bright = "#ff6a7a",
green = "#29a444",
green_bright = "#00a392",
yellow = "#b58a52",
yellow_bright = "#df9080",
blue = "#3f95f6",
blue_bright = "#029fff",
magenta = "#d369af",
magenta_bright = "#af85ea",
magenta_subtle_bg = "#572454",
cyan = "#4fbaef",
cyan_bright = "#35afbf",
silver = "#b8c6d5",
silver_bright = "#ffffff",
}
@ -28,12 +29,12 @@ M.colors = {
foreground = palette.fg,
background = palette.bg,
cursor_bg = palette.grey_bright,
cursor_fg = palette.bg_secondary,
cursor_border = palette.grey_bright,
cursor_bg = palette.magenta,
cursor_fg = palette.fg,
cursor_border = palette.magenta,
selection_fg = palette.grey_bright,
selection_bg = palette.bg_secondary,
selection_fg = palette.magenta_bright,
selection_bg = palette.magenta_subtle_bg,
scrollbar_thumb = palette.bg_secondary,
split = palette.bg_secondary,