Skip to content

Commit

Permalink
Gonna see if changing the escape code makes them work in cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Vesper-arch committed Jan 28, 2024
1 parent d5b758c commit 4b2857a
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions ansi_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@

user_tags = {
"keyword": parse("<bold>"),
"aggresive": "\033[38;5;196m",
"debuff": "\033[38;5;148m",
"buff": "\033[38;5;85m",
"attack": "\033[38;5;196m",
"skill": "\033[38;5;45m",
"power": "\033[38;5;51m",
"status": "\033[38;5;35m",
"curse": "\033[38;5;127m",
"status": "\033[38;5;35m",
"curse": "\033[38;5;127m",
"basic": "\033[38;5;245m",
"common": "\033[38;5;245m",
"uncommon": "\033[38;5;45m",
"rare": "\033[38;5;214m",
"special": "\033[38;5;27m",
"yellow": "\033[38;5;220m",
"dark-blue": "\033[38;5;20m",
"dark-green": "\033[38;5;28m",
"true-blue": "\033[38;5;21m",
"light-black": "\033[38;5;242m",
"light-red": "\033[38;5;1m",
'watcher-purple': "\033[38;5;93m",
"boss": "\033[38;5;124m",
"event": "\033[38;2;254;49;236m",
"starter": "\033[38;5;247m",
"aggresive": "\x1B[38;5;196m",
"debuff": "\x1B[38;5;148m",
"buff": "\x1B[38;5;85m",
"attack": "\x1B[38;5;196m",
"skill": "\x1B[38;5;45m",
"power": "\x1B[38;5;51m",
"status": "\x1B[38;5;35m",
"curse": "\x1B[38;5;127m",
"status": "\x1B[38;5;35m",
"curse": "\x1B[38;5;127m",
"basic": "\x1B[38;5;245m",
"common": "\x1B[38;5;245m",
"uncommon": "\x1B[38;5;45m",
"rare": "\x1B[38;5;214m",
"special": "\x1B[38;5;27m",
"yellow": "\x1B[38;5;220m",
"dark-blue": "\x1B[38;5;20m",
"dark-green": "\x1B[38;5;28m",
"true-blue": "\x1B[38;5;21m",
"light-black": "\x1B[38;5;242m",
"light-red": "\x1B[38;5;1m",
'watcher-purple': "\x1B[38;5;93m",
"boss": "\x1B[38;5;124m",
"event": "\x1B[38;2;254;49;236m",
"starter": "\x1B[38;5;247m",
}
am = AnsiMarkup(tags=user_tags, strict=True)

Expand Down

0 comments on commit 4b2857a

Please sign in to comment.