/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

  1. #
  2. # Python GUI - Standard Colors - Generic
  3. #
  4. from Colors import rgb, selection_forecolor, selection_backcolor
  5. black = rgb(0, 0, 0)
  6. dark_grey = rgb(0.25, 0.25, 0.25)
  7. grey = rgb(0.5, 0.5, 0.5)
  8. light_grey = rgb(0.75, 0.75, 0.75)
  9. white = rgb(1, 1, 1)
  10. red = rgb(1, 0, 0)
  11. green = rgb(0, 1, 0)
  12. blue = rgb(0, 0, 1)
  13. yellow = rgb(1, 1, 0)
  14. cyan = rgb(0, 1, 1)
  15. magenta = rgb(1, 0, 1)
  16. clear = rgb(0, 0, 0, 0)