From d85f89512d6f47dd4d691e35689f84501dcbf248 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 c9ecd5a736..43e78e6ab5 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 03f34d926c..0220732a7c 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"