Skip to content

Commit

Permalink
Fix output terminal colors error for black on black (#4490)
Browse files Browse the repository at this point in the history
  • Loading branch information
audgirka authored Jan 23, 2025
1 parent e918e02 commit 7a68938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansiblelint/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class ANSI:
END = "\033[0m"
# more complex
BOLD = "\033[1m"
DIM = "\033[1;30m"
DIM = "\033[2m"
BOLD_CYAN = "\033[1;36m"

warning = "\033[33m" # yellow
Expand Down

0 comments on commit 7a68938

Please sign in to comment.