aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_emu/colors.py
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2024-02-25 14:45:36 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2024-02-25 14:45:36 +0200
commit93c07558e5209d608c6f1d833507db4cb1579ad7 (patch)
treece75695221b3c4f4c0220db76548720cb95776b8 /atk16_emu/colors.py
parent8fc27a6e08529e8b4d7af54ba67e49bed71f61be (diff)
Fix stuff, add debugger colors
Diffstat (limited to 'atk16_emu/colors.py')
-rw-r--r--atk16_emu/colors.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/atk16_emu/colors.py b/atk16_emu/colors.py
new file mode 100644
index 0000000..2264d4b
--- /dev/null
+++ b/atk16_emu/colors.py
@@ -0,0 +1,10 @@
+class C:
+ HEADER = '\033[95m'
+ OKBLUE = '\033[94m'
+ OKCYAN = '\033[96m'
+ OKGREEN = '\033[92m'
+ WARNING = '\033[93m'
+ FAIL = '\033[91m'
+ ENDC = '\033[0m'
+ BOLD = '\033[1m'
+ UNDERLINE = '\033[4m'