Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/stylesheet.py
blob: d349733d06e26b4f8deefe994ba2a36108bbf25a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from sugar.graphics import style

menu = {
	'background_color' : 0x000000FF,
	'spacing'		   : style.space_unit,
	'padding'		   : style.space_unit
}

menu_Title = {
	'color'	: 0xFFFFFFFF,
	'font'	: style.get_font_description('Bold', 1.2)
}

menu_Separator = {
	'background_color' : 0xFFFFFFFF,
	'box_height'       : style.separator_thickness
}

menu_ActionIcon = {
	'size' : style.standard_icon_size
}

menu_Item = {
	'color'	: 0xFFFFFFFF,
	'font'  : style.get_font_description('Plain', 1.1)
}

menu_Text = {
	'color'	: 0xFFFFFFFF,
	'font'  : style.get_font_description('Plain', 1.2)
}