Remove color="..."from the element ion-titleand use these sass variables in the file variables.scss:
$toolbar-md-title-text-color:
$toolbar-ios-title-text-color:
$toolbar-wp-title-text-color:
,
$colors: (
primary:
secondary:
danger:
light:
dark:
...
custom:
);
, map-get :
$toolbar-md-title-text-color: map-get($colors, custom);
$toolbar-ios-title-text-color: map-get($colors, custom);
$toolbar-wp-title-text-color: map-get($colors, custom);
:
color 3.0.0 Ionic .
Update:
[...] . ? ?
app.scss ( ), :
.toolbar-title.toolbar-title-md,
.toolbar-title.toolbar-title-ios,
.toolbar-title.toolbar-title-wp { color: map-get($colors, custom); }