Last active
November 9, 2022 19:33
-
-
Save nukosuke/12e1459f7769157704513ce15a1e5646 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fish-modus-vivendi color theme | |
set -l foreground ffffff # fg-main | |
set -l comment a8a8a8 # fg-alt | |
set -l selection 34cfff # blue-active | |
# *-intense color | |
set -l red fe6060 | |
set -l orange fba849 | |
set -l green 4fe42f | |
set -l yellow f0dd60 | |
set -l blue 4fafff | |
set -l magenta ff62d4 | |
set -l purple 9f80ff | |
set -l cyan 3fdfd0 | |
# Syntax Highlighting Colors | |
set -g fish_color_normal $foreground | |
set -g fish_color_command $purple | |
set -g fish_color_keyword $magenta | |
set -g fish_color_quote $blue | |
set -g fish_color_redirection $foreground | |
set -g fish_color_end $orange | |
set -g fish_color_error $red | |
set -g fish_color_param $cyan | |
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 $magenta | |
set -g fish_color_autosuggestion $comment | |
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment