mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-25 00:38:20 -05:00
51 lines
1.7 KiB
Fish
51 lines
1.7 KiB
Fish
# Dracula Color Palette
|
|
set -l foreground e5e9f0
|
|
set -l selection 434c5e
|
|
set -l comment 81a1c1
|
|
set -l red ff5959
|
|
set -l orange ff9c59
|
|
set -l yellow ffff59
|
|
set -l green 59ff59
|
|
set -l purple 9059ff
|
|
set -l cyan 59fff9
|
|
set -l pink ff59f9
|
|
|
|
# Syntax Highlighting Colors
|
|
set -gx fish_color_normal $foreground
|
|
set -gx fish_color_command $cyan
|
|
set -gx fish_color_keyword $pink
|
|
set -gx fish_color_quote $yellow
|
|
set -gx fish_color_redirection $foreground
|
|
set -gx fish_color_end $orange
|
|
set -gx fish_color_error $red
|
|
set -gx fish_color_param $purple
|
|
set -gx fish_color_comment $comment
|
|
set -gx fish_color_selection --background=$selection
|
|
set -gx fish_color_search_match --background=$selection
|
|
set -gx fish_color_operator $green
|
|
set -gx fish_color_escape $pink
|
|
set -gx fish_color_autosuggestion $comment
|
|
set -gx fish_color_cancel $red --reverse
|
|
set -gx fish_color_option $orange
|
|
|
|
# Default Prompt Colors
|
|
set -gx fish_color_cwd $green
|
|
set -gx fish_color_host $purple
|
|
set -gx fish_color_host_remote $purple
|
|
set -gx fish_color_user $cyan
|
|
|
|
# Completion Pager Colors
|
|
set -gx fish_pager_color_progress $comment
|
|
set -gx fish_pager_color_background
|
|
set -gx fish_pager_color_prefix $cyan
|
|
set -gx fish_pager_color_completion $foreground
|
|
set -gx fish_pager_color_description $comment
|
|
set -gx fish_pager_color_selected_background --background=$selection
|
|
set -gx fish_pager_color_selected_prefix $cyan
|
|
set -gx fish_pager_color_selected_completion $foreground
|
|
set -gx fish_pager_color_selected_description $comment
|
|
set -gx fish_pager_color_secondary_background
|
|
set -gx fish_pager_color_secondary_prefix $cyan
|
|
set -gx fish_pager_color_secondary_completion $foreground
|
|
set -gx fish_pager_color_secondary_description $comment
|