I am creating a custom theme for my app (dark grey / black) and and with minimal changes to the SASS file am seeing pink icons and shading in my app. Any idea why changing just the base color and active color would result in this?
Screen Shot 2012-10-04 at 8.06.43 AM.png
Code:
$base-color: #505050;
$active-color: #878787;
$base-gradient: 'glossy';
$tabs-dark: darken($base-color, 20%);
$tabs-dark-active-color: saturate($active-color, 20%);
$tabs-bottom-active-gradient: 'recessed';
@import 'sencha-touch/default/all';
@include pictos-iconmask('calendar');
@include pictos-iconmask('home2');
@include pictos-iconmask('tag');
// You may remove any of the following modules that you
// do not use in order to create a smaller css file.
@include sencha-panel;
@include sencha-buttons;
@include sencha-sheet;
@include sencha-picker;
@include sencha-tabs;
@include sencha-toolbar;
@include sencha-toolbar-forms;
@include sencha-indexbar;
@include sencha-list;
@include sencha-layout;
@include sencha-carousel;
@include sencha-form;
@include sencha-msgbox;
@include sencha-loading-spinner;
Thanks much