JSFiddle - React, Tailwind, and code Playground

by Luis Perez

HTML

<div ng-app>
    <input ng-model="tweet" />
    <span ng-class="{ warning: tweet.length > 120 }">
        {{140 - tweet.length}} characters left
    </span>
</div>

CSS

.warning {
    color: orange;
}