comparison pyntnclick/constants.py @ 666:de3f6ad0da9d pyntnclick

Better looking labels, and more use of constants
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 12 Feb 2012 17:21:40 +0200
parents 1faced4e343a
children fe7023750b20
comparison
equal deleted inserted replaced
665:12149ea1c18e 666:de3f6ad0da9d
26 debug = _get_debug() 26 debug = _get_debug()
27 27
28 font = 'Vera.ttf' 28 font = 'Vera.ttf'
29 font_size = 16 29 font_size = 16
30 text_color = 'black' 30 text_color = 'black'
31 label_bg_color = (180, 180, 180, 180) 31 label_padding = 10
32 label_border = 3
33 label_bg_color = (180, 180, 180, 220)
34 label_border_color = (0, 0, 0, 255)
35 disabled_color = (0x66, 0x66, 0x66, 255)
32 36
33 # User event IDs: 37 # User event IDs:
34 enter = 1 38 enter = 1
35 leave = 2 39 leave = 2