Complete the code to set the background color to blue using Tailwind CSS.
<div class="bg-[1]-500 p-4 text-white">Blue background</div>
The class bg-blue-500 sets the background color to a medium blue shade in Tailwind CSS.
Complete the code to set a light gray background using Tailwind CSS.
<section class="bg-[1]-200 p-6">Light gray background</section>
The class bg-gray-200 applies a light gray background color in Tailwind CSS.
Fix the error in the code to correctly apply a red background with Tailwind CSS.
<div class="bg-[1]-600 p-5 text-white">Red background</div>
The class bg-red-600 correctly applies a strong red background color.
Fill both blanks to create a green background with padding and white text using Tailwind CSS.
<div class="bg-[1]-400 p-[2] text-white">Green background</div>
The class bg-green-400 sets a medium green background. The class p-6 adds padding of 1.5rem all around.
Fill all three blanks to create a yellow background with medium padding and black text using Tailwind CSS.
<section class="bg-[1]-300 p-[2] text-[3]">Yellow background</section>
The class bg-yellow-300 sets a soft yellow background. p-4 adds medium padding. text-black sets the text color to black for good contrast.