tailwind.config.js?extend is a key inside theme to add or override values.Option A correctly places extend inside theme and adds a new color under colors. Other options misplace keys or structure.
content key in Tailwind configcontent array in the tailwind.config.js file?The content key lists file paths where Tailwind looks for class names. This helps Tailwind generate only the CSS that is actually used, keeping the file size small.
heading with the value 'Georgia', serif in the Tailwind config.theme then extend then the property to add or override.Option B correctly uses an array for the font family value and places extend inside theme. Option B uses a string instead of an array, which is incorrect.
sidebar-main with columns 250px 1fr in the Tailwind config?Option D correctly places extend inside theme and uses the exact key 'sidebar-main'. Option D uses camelCase instead of kebab-case, which Tailwind expects as string keys.
class strategy?Option A sets darkMode to 'class', which means dark styles apply when a dark class is present on an element. Option A uses 'media' which triggers dark mode based on system settings, not class.