Skip to content

Commit

Permalink
fix[major] - fix $PURPLE yaml data color code being blue and not purple
Browse files Browse the repository at this point in the history
  • Loading branch information
OcelotWalrus authored Dec 30, 2024
1 parent d820d96 commit 30f308c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/text_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def apply_yaml_data_color_code(to_print):
to_print = to_print.replace('$BLUE', '\033[0;34m')
to_print = to_print.replace('$DARK_BLUE', '\033[38;2;0;0;128m')
to_print = to_print.replace('$LIGHT_BLUE', '\033[38;2;30;144;255m')
to_print = to_print.replace('$PURPLE', '\033[0;34m')
to_print = to_print.replace('$PURPLE', '\033[0;35m')
to_print = to_print.replace('$PINK', '\033[38;2;255;0;127m')
to_print = to_print.replace('$CYAN', '\033[0;36m')
to_print = to_print.replace('$WHITE', COLOR_RESET_ALL)
Expand Down

0 comments on commit 30f308c

Please sign in to comment.