aboutsummaryrefslogtreecommitdiff
path: root/todo/gui/color.py
blob: cc7e5a8be665cc244faa14612d0da8446b96e9d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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