diff --git a/modules/fish/default.nix b/modules/fish/default.nix index c6ba3d4..43327d8 100644 --- a/modules/fish/default.nix +++ b/modules/fish/default.nix @@ -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 diff --git a/modules/wezterm/config/theme.lua b/modules/wezterm/config/theme.lua index fa0cd22..28ff165 100644 --- a/modules/wezterm/config/theme.lua +++ b/modules/wezterm/config/theme.lua @@ -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,