Module tkinter_qu.base.colors
This file holds many colors that can be used in an application
Expand source code
"""This file holds many colors that can be used in an application"""
white = "#" + '%02x%02x%02x' % (255, 255, 255)
light_gray = "#" + '%02x%02x%02x' % (190, 190, 190)
gray = "#" + '%02x%02x%02x' % (127, 127, 127)
dark_gray = "#" + '%02x%02x%02x' % (63, 63, 63)
black = "#" + '%02x%02x%02x' % (0, 0, 0)
red = "#" + '%02x%02x%02x' % (255, 0, 0)
green = "#" + '%02x%02x%02x' % (0, 255, 0)
blue = "#" + '%02x%02x%02x' % (0, 0, 255)
yellow = "#" + '%02x%02x%02x' % (255, 255, 0)
magenta = "#" + '%02x%02x%02x' % (255, 0, 255)
cyan = "#" + '%02x%02x%02x' % (0, 255, 255)
orange = "#" + '%02x%02x%02x' % (255, 100, 0)
purple = "#" + '%02x%02x%02x' % (75, 0, 130)
medium_green = "#" + '%02x%02x%02x' % (0, 100, 0)
pleasing_green = "#" + '%02x%02x%02x' % (51, 178, 73)
dark_green = "#" + '%02x%02x%02x' % (34, 100, 0)
light_brown = "#" + '%02x%02x%02x' % (211, 180, 159)
tan = "#" + '%02x%02x%02x' % (210, 180, 140)
sandy_brown = "#" + '%02x%02x%02x' % (244, 164, 96)
beige = "#" + '%02x%02x%02x' % (245, 245, 220)