dotfiles/config/fish/conf.d/colors.fish (view raw)
| 1 | status is-interactive; or exit |
| 2 | |
| 3 | set -l foreground c0caf5 |
| 4 | set -l selection 283457 |
| 5 | set -l comment 565f89 |
| 6 | set -l red f7768e |
| 7 | set -l orange ff9e64 |
| 8 | set -l yellow e0af68 |
| 9 | set -l green 9ece6a |
| 10 | set -l purple 9d7cd8 |
| 11 | set -l cyan 7dcfff |
| 12 | set -l pink bb9af7 |
| 13 | |
| 14 | set -g fish_color_normal $foreground |
| 15 | set -g fish_color_command $cyan |
| 16 | set -g fish_color_keyword $pink |
| 17 | set -g fish_color_quote $yellow |
| 18 | set -g fish_color_redirection $foreground |
| 19 | set -g fish_color_end $orange |
| 20 | set -g fish_color_option $pink |
| 21 | set -g fish_color_error $red |
| 22 | set -g fish_color_param $purple |
| 23 | set -g fish_color_comment $comment |
| 24 | set -g fish_color_selection --background=$selection |
| 25 | set -g fish_color_search_match --background=$selection |
| 26 | set -g fish_color_operator $green |
| 27 | set -g fish_color_escape $pink |
| 28 | set -g fish_color_autosuggestion $comment |
| 29 | |
| 30 | set -g fish_pager_color_progress $comment |
| 31 | set -g fish_pager_color_prefix $cyan |
| 32 | set -g fish_pager_color_completion $foreground |
| 33 | set -g fish_pager_color_description $comment |
| 34 | set -g fish_pager_color_selected_background --background=$selection |