We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0600fce commit 6b1c403Copy full SHA for 6b1c403
src/meshcore_cli/meshcore_cli.py
@@ -46,8 +46,6 @@
46
ANSI_BGREEN = "\033[1;32m"
47
ANSI_BLUE = "\033[0;34m"
48
ANSI_BBLUE = "\033[1;34m"
49
-ANSI_YELLOW = "\033[0;33m"
50
-ANSI_BYELLOW = "\033[1;33m"
51
ANSI_RED = "\033[0;31m"
52
ANSI_BRED = "\033[1;31m"
53
ANSI_MAGENTA = "\033[0;35m"
@@ -61,6 +59,10 @@
61
59
ANSI_BGRAY="\033[1;38;5;247m"
62
60
ANSI_ORANGE="\033[0;38;5;214m"
63
ANSI_BORANGE="\033[1;38;5;214m"
+#ANSI_YELLOW="\033[0;38;5;226m"
+#ANSI_BYELLOW="\033[1;38;5;226m"
64
+ANSI_YELLOW = "\033[0;33m"
65
+ANSI_BYELLOW = "\033[1;33m"
66
67
def escape_ansi(line):
68
ansi_escape = re.compile(r'(?:\x1B[@-_]|[\x80-\x9F])[0-?]*[ -/]*[@-~]')
0 commit comments