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_param brmagenta # regular command parameters
set --universal fish_color_quote yellow # quoted blocks of text set --universal fish_color_quote yellow # quoted blocks of text
set --universal fish_color_redirection brblack # IO redirections 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_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_cancel brblack # the '^C' indicator on a canceled command
set --universal fish_color_host brwhite # current host system in some of fish default prompts 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 = { local palette = {
fg = "#ffffff", fg = "#ffffff",
bg = "#0d0911", bg = "#0f0b15",
bg_secondary = "#231d2b", bg_secondary = "#1d202f",
grey = "#605470", grey = "#807c9f",
grey_bright = "#847a91", grey_bright = "#807c9f",
red = "#be0f58", red = "#f47359",
red_bright = "#e61565", red_bright = "#ff6a7a",
green = "#218b72", green = "#29a444",
green_bright = "#36d9b8", green_bright = "#00a392",
yellow = "#d8a428", yellow = "#b58a52",
yellow_bright = "#f0c674", yellow_bright = "#df9080",
blue = "#1d74c5", blue = "#3f95f6",
blue_bright = "#49a8dd", blue_bright = "#029fff",
magenta = "#9e3a96", magenta = "#d369af",
magenta_bright = "#d957ce", magenta_bright = "#af85ea",
cyan = "#2692a8", magenta_subtle_bg = "#572454",
cyan_bright = "#36c3d9", cyan = "#4fbaef",
silver = "#605470", cyan_bright = "#35afbf",
silver = "#b8c6d5",
silver_bright = "#ffffff", silver_bright = "#ffffff",
} }
@ -28,12 +29,12 @@ M.colors = {
foreground = palette.fg, foreground = palette.fg,
background = palette.bg, background = palette.bg,
cursor_bg = palette.grey_bright, cursor_bg = palette.magenta,
cursor_fg = palette.bg_secondary, cursor_fg = palette.fg,
cursor_border = palette.grey_bright, cursor_border = palette.magenta,
selection_fg = palette.grey_bright, selection_fg = palette.magenta_bright,
selection_bg = palette.bg_secondary, selection_bg = palette.magenta_subtle_bg,
scrollbar_thumb = palette.bg_secondary, scrollbar_thumb = palette.bg_secondary,
split = palette.bg_secondary, split = palette.bg_secondary,