mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
Do not hardcode RGB values in color definitions.
This commit is contained in:
parent
22e0702e8d
commit
aee9d2c9d7
1 changed files with 5 additions and 5 deletions
|
@ -37,9 +37,9 @@ function __fish_config_interactive -d "Initializations that should be performed
|
||||||
set -q fish_color_normal
|
set -q fish_color_normal
|
||||||
or set -U fish_color_normal normal
|
or set -U fish_color_normal normal
|
||||||
set -q fish_color_command
|
set -q fish_color_command
|
||||||
or set -U fish_color_command 005fd7 purple
|
or set -U fish_color_command brblue
|
||||||
set -q fish_color_param
|
set -q fish_color_param
|
||||||
or set -U fish_color_param 00afff cyan
|
or set -U fish_color_param cyan
|
||||||
set -q fish_color_redirection
|
set -q fish_color_redirection
|
||||||
or set -U fish_color_redirection normal
|
or set -U fish_color_redirection normal
|
||||||
set -q fish_color_comment
|
set -q fish_color_comment
|
||||||
|
@ -55,7 +55,7 @@ function __fish_config_interactive -d "Initializations that should be performed
|
||||||
set -q fish_color_quote
|
set -q fish_color_quote
|
||||||
or set -U fish_color_quote brown
|
or set -U fish_color_quote brown
|
||||||
set -q fish_color_autosuggestion
|
set -q fish_color_autosuggestion
|
||||||
or set -U fish_color_autosuggestion 555 yellow
|
or set -U fish_color_autosuggestion brgrey
|
||||||
set -q fish_color_user
|
set -q fish_color_user
|
||||||
or set -U fish_color_user green
|
or set -U fish_color_user green
|
||||||
|
|
||||||
|
@ -86,8 +86,8 @@ function __fish_config_interactive -d "Initializations that should be performed
|
||||||
or set -U fish_pager_color_prefix cyan
|
or set -U fish_pager_color_prefix cyan
|
||||||
set -q fish_pager_color_completion
|
set -q fish_pager_color_completion
|
||||||
or set -U fish_pager_color_completion normal
|
or set -U fish_pager_color_completion normal
|
||||||
set -q fish_pager_color_description 555
|
set -q fish_pager_color_description
|
||||||
or set -U fish_pager_color_description 555 yellow
|
or set -U fish_pager_color_description brgrey
|
||||||
set -q fish_pager_color_progress
|
set -q fish_pager_color_progress
|
||||||
or set -U fish_pager_color_progress cyan
|
or set -U fish_pager_color_progress cyan
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue