1

In the Angular Material custom theming documentation, we are setting the primary color as indigo like this:

$candy-app-primary: mat-palette($mat-indigo);

Where can i refer all acceptable arguments for the mat-palette() function? I wanted to know all possible color names like we have $mat-indigoin the above example. Couldn't find it in the documentation.

Thanks.

shaheer shukur
  • 1,077
  • 2
  • 12
  • 19

1 Answers1

5

You can find in the source file of angular material, all the predefined colors.

And

If you want a custom theme, you can use color generator such as mcg.mbitson.com

Wandrille
  • 6,267
  • 3
  • 20
  • 43