fix(themer): adds varible for focused

This commit is contained in:
Manu Mtz.-Almeida
2018-02-16 20:15:47 +01:00
parent cce93558d7
commit eeec3b1b5e

View File

@@ -1,9 +1,9 @@
import { Color } from './components/Color';
export interface ThemeVariable {
property: string;
quickPick?: {text: string},
quickPick?: {text: string};
value?: Color | number | string;
computed?: {type: ComputedType, params: any}
computed?: {type: ComputedType, params: any};
}
export enum ComputedType {
@@ -528,6 +528,9 @@ export const THEME_VARIABLES: ThemeVariable[] = [
{
property: '--ion-tabbar-background-color'
},
{
property: '--tabbar-background-color-focused'
},
{
property: '--ion-tabbar-border-color'
},