I want to change color of text when using ngClass.
I have the JSON like below but I have a lot of data:
items: [ { itemId: "22222", category: 'A', total: 100 }, { itemId: "666666", category: 'A', total: 80 }, { itemId: "555", category: 'B', total: 50 } ]
I create on .scss 
   &.is-green {
      color: green;
    }
    &.is-red {
      color: red;
    }
I want to use it something like that:
<div *ngFor="let item of items;> 
    <div>{{item.category}}</div>
    <div 
      [ngClass]="{
        'is-green': item.total ,
        'is-red':item.total
         }"
       >
       {{item.total}}</div>
    </div>
From this data I want to display total with min value exp total: 50 color green and total with max value exp total: 100 color red
 
     
    