19 lines
404 B
Python
19 lines
404 B
Python
#
|
|
# Python GUI - Standard Colors - Generic
|
|
#
|
|
|
|
from GUI.Colors import rgb, selection_forecolor, selection_backcolor
|
|
|
|
black = rgb(0, 0, 0)
|
|
dark_grey = rgb(0.25, 0.25, 0.25)
|
|
grey = rgb(0.5, 0.5, 0.5)
|
|
light_grey = rgb(0.75, 0.75, 0.75)
|
|
white = rgb(1, 1, 1)
|
|
red = rgb(1, 0, 0)
|
|
green = rgb(0, 1, 0)
|
|
blue = rgb(0, 0, 1)
|
|
yellow = rgb(1, 1, 0)
|
|
cyan = rgb(0, 1, 1)
|
|
magenta = rgb(1, 0, 1)
|
|
clear = rgb(0, 0, 0, 0)
|