JSFiddle - React, Tailwind, and code Playground
HTML
<button>Ok</button>
<button disabled="disabled">Ok</button>
CSS
button:enabled:active {
color: red
}
button:active:disabled {
color: green;
}
<button>Ok</button>
<button disabled="disabled">Ok</button>
button:enabled:active {
color: red
}
button:active:disabled {
color: green;
}