Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mxtheme.py
diff options
context:
space:
mode:
Diffstat (limited to 'mxtheme.py')
-rw-r--r--mxtheme.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/mxtheme.py b/mxtheme.py
new file mode 100644
index 0000000..d2cab13
--- /dev/null
+++ b/mxtheme.py
@@ -0,0 +1,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': [
+ ]
+ },
+ }
+