2021-04-20 12:24:44 +00:00
|
|
|
# TokyoNight Color Palette
|
2023-12-01 20:30:50 +00:00
|
|
|
set -l foreground E0CCAE
|
|
|
|
set -l selection 6b442f
|
|
|
|
set -l comment 6B4035
|
|
|
|
set -l red bf472c
|
|
|
|
set -l orange ff9e64
|
|
|
|
set -l yellow f2a766
|
|
|
|
set -l green a4896f
|
|
|
|
set -l purple a47a7a
|
|
|
|
set -l cyan a67458
|
|
|
|
set -l pink 8a4b53
|
2022-09-24 14:50:29 +00:00
|
|
|
|
2021-04-20 12:24:44 +00:00
|
|
|
# Syntax Highlighting Colors
|
|
|
|
set -g fish_color_normal $foreground
|
|
|
|
set -g fish_color_command $cyan
|
|
|
|
set -g fish_color_keyword $pink
|
|
|
|
set -g fish_color_quote $yellow
|
|
|
|
set -g fish_color_redirection $foreground
|
|
|
|
set -g fish_color_end $orange
|
|
|
|
set -g fish_color_error $red
|
|
|
|
set -g fish_color_param $purple
|
|
|
|
set -g fish_color_comment $comment
|
|
|
|
set -g fish_color_selection --background=$selection
|
|
|
|
set -g fish_color_search_match --background=$selection
|
|
|
|
set -g fish_color_operator $green
|
|
|
|
set -g fish_color_escape $pink
|
|
|
|
set -g fish_color_autosuggestion $comment
|
2022-09-24 14:50:29 +00:00
|
|
|
|
2021-04-20 12:24:44 +00:00
|
|
|
# Completion Pager Colors
|
|
|
|
set -g fish_pager_color_progress $comment
|
|
|
|
set -g fish_pager_color_prefix $cyan
|
|
|
|
set -g fish_pager_color_completion $foreground
|
|
|
|
set -g fish_pager_color_description $comment
|
2022-09-24 14:50:29 +00:00
|
|
|
set -g fish_pager_color_selected_background --background=$selection
|
|
|
|
|
2023-12-01 20:30:50 +00:00
|
|
|
|