From 9a5f018ff692ac2459e548eeb30f8ab7d3424a2b Mon Sep 17 00:00:00 2001 From: Renan Rodrigo Date: Fri, 13 Sep 2024 00:10:59 -0300 Subject: [PATCH] colors: add orange to the TxtColor class Signed-off-by: Renan Rodrigo --- tools/spellcheck-allowed-words.txt | 1 + uaclient/messages/__init__.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tools/spellcheck-allowed-words.txt b/tools/spellcheck-allowed-words.txt index 4e3666a5b5..db412ff90a 100644 --- a/tools/spellcheck-allowed-words.txt +++ b/tools/spellcheck-allowed-words.txt @@ -1,5 +1,6 @@ 0m 1m +208m 37m 500MB 91m diff --git a/uaclient/messages/__init__.py b/uaclient/messages/__init__.py index 140101635c..388b4c9004 100644 --- a/uaclient/messages/__init__.py +++ b/uaclient/messages/__init__.py @@ -36,6 +36,7 @@ class TxtColor: INFOBLUE = "\033[94m" WARNINGYELLOW = "\033[93m" FAIL = "\033[91m" + ORANGE = "\033[38;5;208m" BOLD = "\033[1m" ENDC = "\033[0m"