Hi I want to let you know how themes in Jewel will work with your apps :)
I created some themes, but I'll be creating the rest as I get the initial code in develop For now I created light / no flat / themes for colors blue, topaz and emerald I configured JewelExample with the following code <dependency> <groupId>org.apache.royale.framework</groupId> <artifactId>Jewel-Light-NoFlat-Primary-Blue-Theme</artifactId> <version>0.9.3-SNAPSHOT</version> <type>swc</type> <scope>theme</scope> <classifier>js</classifier> </dependency> <dependency> <groupId>org.apache.royale.framework</groupId> <artifactId>Jewel-Light-NoFlat-Secondary-Topaz-Theme</artifactId> <version>0.9.3-SNAPSHOT</version> <type>swc</type> <scope>theme</scope> <classifier>js</classifier> </dependency> <dependency> <groupId>org.apache.royale.framework</groupId> <artifactId>Jewel-Light-NoFlat-Emphasized-Emerald-Theme</artifactId> <version>0.9.3-SNAPSHOT</version> <type>swc</type> <scope>theme</scope> </dependency> So you only need to change themes to get the combo you want All theme css are generated on the fly with JewelTheme (that theme is the "master" theme and use SASS to generate all the possible CSS files and put them in the projects that needs that files) So if I change something, I only need to compile SASS to update all theme projects :) -- Carlos Rovira http://about.me/carlosrovira
