Is there a way to adjust the text color within a div when hovering over it? Even though everything else changes, the text color remains the same.
See below for an example:
<div className="hover:bg-blue-100 hover:border-blue-500 hover:text-blue-600">
<p>Update the text color here....</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<div className="hover:bg-blue-100 hover:border-blue-500 hover:text-blue-600">
<p>Update the text color here....</p>
</div>