Skip to content

Commit

Permalink
improve AnsiStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
zoumingzhe committed Apr 1, 2024
1 parent 1368087 commit a18b923
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions colorama/ansi.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,17 @@ class AnsiBack(AnsiCodes):


class AnsiStyle(AnsiCodes):
BRIGHT = 1
DIM = 2
NORMAL = 22
RESET_ALL = 0
BRIGHT = 1
DIM = 2
ITALIC = 3
UNDERLINE = 4
SLOWBLINK = 5
RAPIDBLINK = 6
INVERT = 7
HIDE = 8
STRIKETHROUGH = 9
NORMAL = 22
RESET_ALL = 0

Fore = AnsiFore()
Back = AnsiBack()
Expand Down

0 comments on commit a18b923

Please sign in to comment.