From 30f308c5d40ac75ab63626c042ccc583f53ec79e Mon Sep 17 00:00:00 2001 From: Cromha <87318892+OcelotWalrus@users.noreply.github.com> Date: Mon, 30 Dec 2024 13:03:38 +0100 Subject: [PATCH] fix[major] - fix $PURPLE yaml data color code being blue and not purple --- source/text_handling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/text_handling.py b/source/text_handling.py index 1e8f2ef..c832e91 100644 --- a/source/text_handling.py +++ b/source/text_handling.py @@ -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)