Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mxtheme.py
blob: d2cab13d1161a16574dd40b4b8cc10505a6bcf8b (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
"""Theme definition for Conozco Mexico"""

theme_list = ['states',  'capitals']

theme_defs = {
    'states': {
        'background': 'mexico_states_long.png', 
        'icon': 'state_icon.png',
        'zones':'zones_states.txt', 
        'levels':'levels_states.txt', 
        'zonepic':'zones_states.png', 
        'buttons': [
        ]
    }, 
    'capitals': {
        'background': 'mexico_capitals_long.png', 
        'icon': 'capital_icon.png',
        'zones':'zones_capitals.txt', 
        'levels':'levels_capitals.txt',
        'zonepic': 'zones_capitals.png', 
        'buttons': [
        ]
    },
 }