Switching from Material to Indigo Theme
Since version 10.1
our components include a new theme inspired by our own design language.
In order to switch from Material
to Indigo
, you can use one of the built-in mixins.
Indigo Light Theme
@import '~igniteui-angular/lib/core/styles/themes/index';
@include core();
@include indigo-light-theme($light-indigo-palette);
Indigo Dark Theme
@use "igniteui-angular/theming" as *;
// IMPORTANT: Prior to Ignite UI for Angular version 13 use:
// @import '~igniteui-angular/lib/core/styles/themes/index';
@include core();
@include indigo-dark-theme($dark-indigo-palette);
API Overview
View page on
GitHub