<div *ngFor= “ let singleorder of order.order”>
<p [ngStyle]="
'color':(singleorder.status === 'CONFIRM' )? 'green' : 'red' ,
'background' : (singleorder.status === 'CONFIRM')? '#e4f4eb': '#f7d0c7'
}">. {{singleorder.status}}>
</div>
I would like the background color and text to appear green if the status is CONFIRM, or red if it is CANCELLED.