I'm trying to change the background-color of a div based on the value of an Angular expression. I have the following div:
<div class="outer">
<h4 class="weather-heading">It's currently {{weather}}</h4>
</div>
Based on the value of {{weather}} (i.e. sunny, cloudy), I want to change the background-color of the outer div. What's the best way to do this with angular?