diff --git a/.gitignore b/.gitignore
index 31226a4..03f27dd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
node_modules/
temp/
+.idea/
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 2571b31..c599a7f 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,31 +4,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -48,55 +23,22 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
-
+
@@ -105,7 +47,7 @@
-
+
@@ -114,7 +56,7 @@
-
+
@@ -123,12 +65,8 @@
-
-
-
-
-
-
+
+
@@ -136,7 +74,7 @@
-
+
@@ -145,10 +83,8 @@
-
-
-
-
+
+
@@ -156,7 +92,7 @@
-
+
@@ -165,7 +101,7 @@
-
+
@@ -174,11 +110,8 @@
-
-
-
-
-
+
+
@@ -212,10 +145,9 @@
-
-
-
-
+
+
+
@@ -243,6 +175,7 @@
+
@@ -301,20 +234,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -349,23 +268,16 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
@@ -378,6 +290,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
@@ -387,85 +316,38 @@
-
+
-
+
+
-
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -473,114 +355,113 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
+
-
-
-
-
+
+
-
+
-
+
+
+
+
-
-
-
-
-
-
+
+
-
+
-
+
-
+
-
+
-
-
-
+
-
+
-
+
-
+
diff --git a/twc-base.js b/twc-base.js
index a607f6a..a4b2a12 100644
--- a/twc-base.js
+++ b/twc-base.js
@@ -106,7 +106,11 @@ Generator.prototype.generateModuleFiles = function () {
this.appTemplate('app.js', path.join(targetDirectory, this.name, this.name+'.app.js'));
this.appTemplate('controller.js', path.join(targetDirectory, this.name, this.name+'.controller.js'));
this.appTemplate('module.css', path.join(targetDirectory, this.name, 'css', 'global_'+this.name+'.css'));
+ this.appTemplate('module.css', path.join(targetDirectory, this.name, 'css', 'redcell_'+this.name+'.css'));
+ this.appTemplate('module.css', path.join(targetDirectory, this.name, 'css', 'reboot_'+this.name+'.css'));
this.appTemplate('module.sass', path.join(targetDirectory, this.name, 'sass', 'global_'+this.name+'.sass'));
+ this.appTemplate('module.sass', path.join(targetDirectory, this.name, 'sass', 'redcell_'+this.name+'.sass'));
+ this.appTemplate('module.sass', path.join(targetDirectory, this.name, 'sass', 'reboot_'+this.name+'.sass'));
this.appTemplate('module.info', path.join(targetDirectory, this.name, this.name+'.info'));
this.appTemplate('esi.inc', path.join(targetDirectory, this.name, this.name+'.esi.inc'));
this.appTemplate('config.rb', path.join(targetDirectory, this.name, 'config.rb'));