/GUI/Generic/StdColors.py
https://bitbucket.org/alsh/pygui-mirror · Python · 18 lines · 13 code · 2 blank · 3 comment · 0 complexity · d1221f8a41d19834953eec2b2bc7d670 MD5 · raw file
- #
- # Python GUI - Standard Colors - Generic
- #
- from 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)