aboutsummaryrefslogtreecommitdiff
path: root/todo/gui/color.py
blob: 7ce74e5e40ab91bcbd6da8efa380fc611d5e4881 (plain)
1
2
3
4
5
6
7
8
9
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