Skip to content

Commit

Permalink
fix(fish): use magenta for option color
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jul 9, 2024
1 parent dd0e062 commit 78cc1ae
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion extras/fish/tokyonight_day.fish
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -g fish_color_quote $yellow
set -g fish_color_redirection $foreground
set -g fish_color_end $orange
set -g fish_color_option $orange
set -g fish_color_option $pink
set -g fish_color_error $red
set -g fish_color_param $purple
set -g fish_color_comment $comment
Expand Down
2 changes: 1 addition & 1 deletion extras/fish/tokyonight_moon.fish
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -g fish_color_quote $yellow
set -g fish_color_redirection $foreground
set -g fish_color_end $orange
set -g fish_color_option $orange
set -g fish_color_option $pink
set -g fish_color_error $red
set -g fish_color_param $purple
set -g fish_color_comment $comment
Expand Down
2 changes: 1 addition & 1 deletion extras/fish/tokyonight_night.fish
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -g fish_color_quote $yellow
set -g fish_color_redirection $foreground
set -g fish_color_end $orange
set -g fish_color_option $orange
set -g fish_color_option $pink
set -g fish_color_error $red
set -g fish_color_param $purple
set -g fish_color_comment $comment
Expand Down
2 changes: 1 addition & 1 deletion extras/fish/tokyonight_storm.fish
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -g fish_color_quote $yellow
set -g fish_color_redirection $foreground
set -g fish_color_end $orange
set -g fish_color_option $orange
set -g fish_color_option $pink
set -g fish_color_error $red
set -g fish_color_param $purple
set -g fish_color_comment $comment
Expand Down
2 changes: 1 addition & 1 deletion extras/fish_themes/tokyonight_day.theme
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
fish_color_quote 8c6c3e
fish_color_redirection 3760bf
fish_color_end b15c00
fish_color_option b15c00
fish_color_option 9854f1
fish_color_error f52a65
fish_color_param 7847bd
fish_color_comment 848cb5
Expand Down
2 changes: 1 addition & 1 deletion extras/fish_themes/tokyonight_moon.theme
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
fish_color_quote ffc777
fish_color_redirection c8d3f5
fish_color_end ff966c
fish_color_option ff966c
fish_color_option c099ff
fish_color_error ff757f
fish_color_param fca7ea
fish_color_comment 636da6
Expand Down
2 changes: 1 addition & 1 deletion extras/fish_themes/tokyonight_night.theme
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
fish_color_quote e0af68
fish_color_redirection c0caf5
fish_color_end ff9e64
fish_color_option ff9e64
fish_color_option bb9af7
fish_color_error f7768e
fish_color_param 9d7cd8
fish_color_comment 565f89
Expand Down
2 changes: 1 addition & 1 deletion extras/fish_themes/tokyonight_storm.theme
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
fish_color_quote e0af68
fish_color_redirection c0caf5
fish_color_end ff9e64
fish_color_option ff9e64
fish_color_option bb9af7
fish_color_error f7768e
fish_color_param 9d7cd8
fish_color_comment 565f89
Expand Down
2 changes: 1 addition & 1 deletion lua/tokyonight/extra/fish.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function M.generate(colors)
set -g fish_color_quote $yellow
set -g fish_color_redirection $foreground
set -g fish_color_end $orange
set -g fish_color_option $orange
set -g fish_color_option $pink
set -g fish_color_error $red
set -g fish_color_param $purple
set -g fish_color_comment $comment
Expand Down
2 changes: 1 addition & 1 deletion lua/tokyonight/extra/fish_themes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function M.generate(colors)
fish_color_quote ${yellow}
fish_color_redirection ${fg}
fish_color_end ${orange}
fish_color_option ${orange}
fish_color_option ${magenta}
fish_color_error ${red}
fish_color_param ${purple}
fish_color_comment ${comment}
Expand Down

0 comments on commit 78cc1ae

Please sign in to comment.