you can add yours there, then contribute it via a git patch. See [[Contribute]] for sending patches via git.
 
= Testing a Theme =
 
In your git tree,
 
            git clone git://git.amahi.org/amahi.git
            cd amahi/platform/platform/html
            ./script/server production
 
Then access your test environment as http://localhost:3000
 
Within the testing tree (in amahi/platform/platform/html), you can add new themes in 
 
            public/themes/
 
each in a directory of it's own. Then you should see the new theme next time you run ./script/server (if you know how to duplicate a database, it may be bestter to run in development mode, no server restarts - see your changes live!) in this location:
 
            <nowiki>http://localhost:3000/setup?sub=themes&tab=setting</nowiki>
 
To run in development mode, you can duplicate hda_production db into hda_development and simply run:
 
           ./script/server
 
= Theme "inheritance" from the Default =