Skip to content

Commit

Permalink
fix: 命令行提示颜色,Warn: ANSIBrightYellow -> ANSIBrightRed
Browse files Browse the repository at this point in the history
  • Loading branch information
iseki0 committed May 23, 2022
1 parent 0c69d8f commit 3999c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion display/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (m MsgLevel) fColor() termenv.ANSIColor {
case MsgError:
return termenv.ANSIBrightRed
case MsgWarn:
return termenv.ANSIBrightYellow
return termenv.ANSIBrightRed
case MsgNotice:
return termenv.ANSIBrightCyan
}
Expand Down

0 comments on commit 3999c87

Please sign in to comment.