PageRenderTime 27ms CodeModel.GetById 18ms app.highlight 8ms RepoModel.GetById 0ms app.codeStats 0ms

/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
 5from Colors import rgb, selection_forecolor, selection_backcolor
 6
 7black = rgb(0, 0, 0)
 8dark_grey = rgb(0.25, 0.25, 0.25)
 9grey = rgb(0.5, 0.5, 0.5)
10light_grey = rgb(0.75, 0.75, 0.75)
11white = rgb(1, 1, 1)
12red = rgb(1, 0, 0)
13green = rgb(0, 1, 0)
14blue = rgb(0, 0, 1)
15yellow = rgb(1, 1, 0)
16cyan = rgb(0, 1, 1)
17magenta = rgb(1, 0, 1)
18clear = rgb(0, 0, 0, 0)