blob: f02fbaec8314508d2f265ef6d8fc681c1c2e1e1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
from PyQt5 import QtGui
red: QtGui.QColor = QtGui.QColor(200, 30, 30)
orange: QtGui.QColor = QtGui.QColor(200, 100, 30)
green: QtGui.QColor = QtGui.QColor(30, 180, 30)
blue: QtGui.QColor = QtGui.QColor(30, 30, 200)
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
|