diff --git a/clients/flash/air-client/src/Default.css b/clients/flash/air-client/src/Default.css
index 0bf5cb3b2939476790eebf9fbf9a2918bfa391cc..f36d32a67e076377fc4d80017c507ad3a2226fa6 100755
--- a/clients/flash/air-client/src/Default.css
+++ b/clients/flash/air-client/src/Default.css
@@ -79,6 +79,7 @@
 
 global {
 	font-family : SourceSansPro;
+	color       : PropertyReference("bbbBlack");
 }
 
 /* Classes */
@@ -160,6 +161,20 @@ s|CheckBox {
 	chromeColor : PropertyReference("white");
 }
 
+main|EmojiItemRenderer {
+	iconFont      : BBBIcons;
+	iconColor     : PropertyReference("grey700");
+	color         : PropertyReference("grey700");
+	selectedColor : PropertyReference("bbbBlue");
+	itemHeight    : 30;
+	
+}
+
+.statusList {
+	skinClass              : ClassReference("org.bigbluebutton.air.main.views.EmojiListSkin");
+	contentBackgroundAlpha : 0;
+}
+
 .sectionTitle {
 	backgroundColor : PropertyReference("grey100");
 	color           : PropertyReference("grey700");
@@ -241,7 +256,7 @@ settings|SettingsItemRenderer {
 .menuButton, .menuButtonRed {
 	fontFamily              : SourceSansPro;
 	backgroundColor         : PropertyReference("bbbBlue");
-	selectedBackgroundColor : PropertyReference("bbbGrey");
+	selectedBackgroundColor : PropertyReference("darkBlue");
 	color                   : PropertyReference("white");
 	iconFont                : BBBIcons;
 	iconColor               : PropertyReference("white");
diff --git a/clients/flash/air-client/src/css/ColorPalette.as b/clients/flash/air-client/src/css/ColorPalette.as
index abfbf62d3d4f30149c6265286953a2643693401d..a4b414c81ccecd3f10490a58f8d1bfae620727d9 100755
--- a/clients/flash/air-client/src/css/ColorPalette.as
+++ b/clients/flash/air-client/src/css/ColorPalette.as
@@ -1,16 +1,16 @@
 // Base colours
 
-private const bbbBlack:uint = 0x2A2D33;
+private const bbbBlack:uint = 0x06172A;
 
-private const bbbBlue:uint = 0x299AD5;
+private const bbbBlue:uint = 0x0F70D7;
 
-private const bbbGreen:uint = 0x4DC0A2;
+private const bbbGreen:uint = 0x008081;
 
-private const bbbRed:uint = 0xF0615F;
+private const bbbRed:uint = 0xDF2721;
 
-private const bbbDarkGrey:uint = 0x353B42;
+private const bbbDarkGrey:uint = 0x4E5A66;
 
-private const bbbGrey:uint = 0x8B9AA8;
+private const darkBlue:uint = 0x0A5EAC;
 
 private const bbbWhite:uint = 0xF3F6F9;