Search code examples
angularangular-materialangular-material2

Angular material theme install


I'm beginning with Angular material.After install dependencies I can use the components but cant't see any colors.

First I've installed the theme at styles.css :

@import "~@angular/material/prebuilt-themes/purple-green.css";

But witth no results.

Then I used a reference at index.html :

  <link href="node_modules/@angular/material/prebuilt-themes/indigo-pink.css" rel="stylesheet">

No results too. All remains black and white.

Any ideas ?


Solution

  • What happens if you set a color attribute to your component like e.g.

    <button md-raised-button color="primary">Click me!</button>
    

    This should normally result in a colored button:

    enter image description here