Complete the code to set the background color to an arbitrary hex value using Tailwind CSS.
<div class="bg-[[1]] p-4 text-white">Hello World</div>
In Tailwind CSS, arbitrary colors are written inside square brackets with the exact color value, like bg-[#ff5733].
Complete the code to set the text color to an arbitrary RGB value using Tailwind CSS.
<p class="text-[[1]]">Colored Text</p>
Arbitrary colors in Tailwind can use any valid CSS color format inside square brackets, like text-[rgb(255,0,0)].
Fix the error in the code to correctly apply an arbitrary background color with opacity in Tailwind CSS.
<div class="bg-[[1]]/50 p-4">Transparent Background</div>
To use opacity with arbitrary colors in Tailwind, write the color inside brackets without the opacity, then add /50 for 50% opacity, like bg-[#000000]/50.
Fill both blanks to set a border color and hover background color using arbitrary colors in Tailwind CSS.
<button class="border-2 border-[[1]] hover:bg-[[2]] p-2 rounded">Click me</button>
The border color uses an arbitrary hex color border-[#4caf50], and the hover background uses another arbitrary hex color hover:bg-[#2196f3].
Fill all three blanks to create a text shadow with an arbitrary color and set the background color using Tailwind CSS.
<div class="text-[[3]] text-shadow-[0_2px_4px_[1]] bg-[[2]] p-6">Shadowed Text</div>
The text shadow color uses an arbitrary rgba color text-shadow-[0_2px_4px_rgba(0,0,0,0.25)], the background uses an arbitrary hex color bg-[#f0f0f0], and the text color uses an arbitrary hex color text-[#333333].