We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e7c99 commit de580e8Copy full SHA for de580e8
ansi_tags.py
@@ -25,7 +25,7 @@
25
"boss": "\x1B[38;5;124m",
26
"event": "\x1B[38;2;254;49;236m",
27
"starter": "\x1B[38;5;247m",
28
- "orange": "\x1B[38;5;202"
+ "orange": parse("<fg #d78700>")
29
}
30
am = AnsiMarkup(tags=user_tags, strict=True)
31
tests/test_displayer.py
@@ -16,6 +16,11 @@ def all_enemies():
16
enemies.append((name,obj))
17
return enemies
18
19
+def test_colors():
20
+ from ansi_tags import user_tags
21
+ for key, v in user_tags.items():
22
+ ansiprint(f'Color {key:15s}: <{key}>1234567890abcdefghijklmnopqrstuvwxyz</{key}>')
23
+
24
class TestDisplayers():
# TODO: Find some other thing to test because the display_actual_damage and display_actual_block functions have been removed as of 4/13/24.
0 commit comments