summaryrefslogtreecommitdiff
path: root/src/backend/getcolor.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-04 22:10:33 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-04 22:10:33 +0000
commit99455bbb94f298cd101c3e43227647ccf7aaaf1b (patch)
tree6e1d079bc2a051592d64e5fd1a73b3ea6c2d0123 /src/backend/getcolor.py
parent1965c85d0acc683e1dddb58cec343b2ff62711e4 (diff)
add an aditional matchphrase to the dependency solver, add color support && pep8 the whole backendv4.2212.0
Diffstat (limited to 'src/backend/getcolor.py')
-rw-r--r--src/backend/getcolor.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/backend/getcolor.py b/src/backend/getcolor.py
new file mode 100644
index 0000000..8f4cf3b
--- /dev/null
+++ b/src/backend/getcolor.py
@@ -0,0 +1,9 @@
+#!/usr/bin/python3
+
+bright_green = '\u001b[32;1m'
+bright_red = '\u001b[31;1m'
+bright_yellow = '\u001b[33;1m'
+bright_white = '\u001b[37;1m'
+green = '\u001b[32m'
+magenta = '\u001b[35m'
+reset = '\u001b[0m'