Complete the code to set the text color to red using Tailwind CSS.
<p class="text-[1]-500">This text is red.</p>
The class text-red-500 sets the text color to a medium red shade in Tailwind CSS.
Complete the code to make the text color blue with Tailwind CSS.
<span class="[1]-600">Blue text here.</span>
The class text-blue-600 sets the text color to a darker blue shade.
Fix the error in the code to correctly apply green text color in Tailwind CSS.
<h1 class="text-[1]-400">Green heading</h1>
The class text-green-400 applies a medium green text color.
Fill both blanks to create a paragraph with yellow text and a font size of large using Tailwind CSS.
<p class="[1] [2]">Yellow large text.</p>
The class text-yellow-500 sets the text color to yellow, and text-lg sets the font size to large.
Fill all three blanks to create a heading with purple text, bold font, and extra large size using Tailwind CSS.
<h2 class="[1] [2] [3]">Purple bold heading</h2>
text-purple-700 sets a strong purple color, font-bold makes the text bold, and text-xl sets an extra large font size.