Tools/HIL: fix terminal colors (ANSI escape codes)

This commit is contained in:
Daniel Agar 2021-07-16 21:08:08 -04:00
parent f80f0e6c7e
commit 5a046cae7e
4 changed files with 8 additions and 8 deletions

View File

@ -7,9 +7,9 @@ from argparse import ArgumentParser
import re
import sys
COLOR_YELLOW = "\x1b[31m"
COLOR_RED = "\x1b[31m"
COLOR_GREEN = "\x1b[32m"
COLOR_RED = "\x1b[33m"
COLOR_YELLOW = "\x1b[33m"
COLOR_WHITE = "\x1b[37m"
COLOR_RESET = "\x1b[0m"

View File

@ -7,9 +7,9 @@ from argparse import ArgumentParser
import re
import sys
COLOR_YELLOW = "\x1b[31m"
COLOR_RED = "\x1b[31m"
COLOR_GREEN = "\x1b[32m"
COLOR_RED = "\x1b[33m"
COLOR_YELLOW = "\x1b[33m"
COLOR_WHITE = "\x1b[37m"
COLOR_RESET = "\x1b[0m"

View File

@ -7,9 +7,9 @@ from argparse import ArgumentParser
import re
import sys
COLOR_YELLOW = "\x1b[31m"
COLOR_RED = "\x1b[31m"
COLOR_GREEN = "\x1b[32m"
COLOR_RED = "\x1b[33m"
COLOR_YELLOW = "\x1b[33m"
COLOR_WHITE = "\x1b[37m"
COLOR_RESET = "\x1b[0m"

View File

@ -9,9 +9,9 @@ import unittest
import os
import sys
COLOR_YELLOW = "\x1b[31m"
COLOR_RED = "\x1b[31m"
COLOR_GREEN = "\x1b[32m"
COLOR_RED = "\x1b[33m"
COLOR_YELLOW = "\x1b[33m"
COLOR_WHITE = "\x1b[37m"
COLOR_RESET = "\x1b[0m"