aboutsummaryrefslogtreecommitdiff
path: root/todo/gui/color.py
diff options
context:
space:
mode:
Diffstat (limited to 'todo/gui/color.py')
-rw-r--r--todo/gui/color.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/todo/gui/color.py b/todo/gui/color.py
new file mode 100644
index 0000000..cc7e5a8
--- /dev/null
+++ b/todo/gui/color.py
@@ -0,0 +1,21 @@
+from PyQt5 import QtGui
+
+black = QtGui.QColor(0, 0, 0)
+red = QtGui.QColor(200, 30, 30)
+orange = QtGui.QColor(200, 100, 30)
+green = QtGui.QColor(30, 180, 30)
+blue = QtGui.QColor(30, 30, 200)
+
+text = black
+
+easy_difficulty = green
+normal_difficulty = orange
+hard_difficulty = red
+
+low_priority = green
+middle_priority = orange
+high_priority = red
+
+short_duration = green
+medium_duration = orange
+long_duration = red