mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-03 16:44:00 +08:00
f116a81250
This gives us the biggest chance that these are *visible* in the
terminal, which allows people to choose something nicer.
It changes two colors - the autosuggestion and the pager
description (i.e. the completion descriptions in the pager).
In a bunch of terminals I've tested these are pretty similar - for the
most part brblack for the suggestions is a bit brighter than 555, and
yellow for the descriptions is less blue
than the original.
We could also make the descriptions brblack, but that's for later.
Technically we are a bit naughty in having a few foreground and
background pairs that might not be visible,
but there's nothing we can do if someone makes white invisible on brblack.
Fixes #9913
Fixes #3443
(cherry picked from commit ed881bcdd8
)
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
# name: fish default
|
|
# NOTE: These should only use named colors
|
|
# to give us the maximum chance they are
|
|
# visible in whatever terminal setup.
|
|
|
|
fish_color_normal normal
|
|
fish_color_command blue
|
|
fish_color_quote yellow
|
|
fish_color_redirection cyan --bold
|
|
fish_color_end green
|
|
fish_color_error brred
|
|
fish_color_param cyan
|
|
fish_color_comment red
|
|
fish_color_match --background=brblue
|
|
fish_color_search_match bryellow --background=brblack
|
|
fish_color_selection white --bold --background=brblack
|
|
fish_color_history_current --bold
|
|
fish_color_operator brcyan
|
|
fish_color_escape brcyan
|
|
fish_color_cwd green
|
|
fish_color_valid_path --underline
|
|
fish_color_cwd_root red
|
|
fish_color_user brgreen
|
|
fish_color_autosuggestion brblack
|
|
fish_pager_color_completion normal
|
|
fish_color_host normal
|
|
fish_pager_color_description yellow -i
|
|
fish_color_cancel -r
|
|
fish_pager_color_prefix normal --bold --underline
|
|
fish_pager_color_progress brwhite --background=cyan
|
|
fish_pager_color_selected_background -r
|
|
fish_color_option cyan
|
|
fish_color_keyword blue
|
|
fish_color_host_remote yellow
|
|
fish_color_status red
|