Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/stylesheet.py
blob: ae9b4c80933de25c6f3e98ed4660f6875cefd9a8 (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)
}