For example I have agm-map and two agm-circle's in my Angular HTML file. And fillColor for circles is set to red like this:
<agm-circle [latitude]="lat1" [longitude]="lng1"
[radius]="5000"
[fillColor]="'red'">
</agm-circle>
<agm-circle [latitude]="lat2" [longitude]="lng2"
[radius]="1000"
[fillColor]="'red'">
</agm-circle>
Now I want to remove duplicating of fillColor value. I know I can do it like this:
In HTML:
[fillColor]="circleFillColor"
In TS:
circleFillColor = 'red';
But I think the more appropriate place for colors is CSS file. So the question is: how to define this color in CSS.