JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>

</head>

<body>
Name: <input type="text" value="Pranay Rana" /><br>
Country: <input type="text" disabled="disabled" value="India" />
</body>
</html>

CSS

input[type="text"]:enabled
{
background:green;
}
input[type="text"]:disabled
{
background:red;
}