aboutsummaryrefslogtreecommitdiff
path: root/src/gui/color.py
diff options
context:
space:
mode:
authorJoris2020-05-10 12:50:46 +0200
committerJoris2020-05-10 12:50:46 +0200
commit7372ab407535ade48ce0b642ae051990e3bef7ed (patch)
tree65ae22d72cf10e40e777c4fa1919539d8e065e46 /src/gui/color.py
parenta134f20eb62e6d174e7da81fd4adb7ff9e8b3b71 (diff)
downloadtodo-7372ab407535ade48ce0b642ae051990e3bef7ed.tar.gz
todo-7372ab407535ade48ce0b642ae051990e3bef7ed.tar.bz2
todo-7372ab407535ade48ce0b642ae051990e3bef7ed.zip
Add task difficulty and priority fields
Diffstat (limited to 'src/gui/color.py')
-rw-r--r--src/gui/color.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gui/color.py b/src/gui/color.py
new file mode 100644
index 0000000..dcb21ea
--- /dev/null
+++ b/src/gui/color.py
@@ -0,0 +1,13 @@
+from PyQt5 import QtGui
+
+red: QtGui.QColor = QtGui.QColor(200, 30, 30)
+green: QtGui.QColor = QtGui.QColor(30, 180, 30)
+blue: QtGui.QColor = QtGui.QColor(30, 30, 200)
+
+low_difficulty = green
+medium_difficulty = blue
+high_difficulty = red
+
+low_priority = green
+medium_priority = blue
+high_priority = red