--- name: preset-wind3 description: Tailwind CSS / Windi CSS compatible preset for UnoCSS --- # Preset Wind3 The Tailwind CSS / Windi CSS compatible preset. Most commonly used preset for UnoCSS. ## Installation ```ts import { defineConfig, presetWind3 } from 'unocss'; export default defineConfig({ presets: [presetWind3()], }); ``` **Note:** `@unocss/preset-uno` and `@unocss/preset-wind` are deprecated and renamed to `@unocss/preset-wind3`. ## Features - Full Tailwind CSS v3 compatibility - Dark mode (`dark:`, `@dark:`) - All responsive variants (`sm:`, `md:`, `lg:`, `xl:`, `2xl:`) - All standard utilities (flex, grid, spacing, colors, typography, etc.) - Animation support (includes Animate.css animations) ## Dark Mode ### Class-based (default) ```html
``` Generates: `.dark .dark\:bg-gray-800 { ... }` ### Media Query Based ```ts presetWind3({ dark: 'media', }); ``` Generates: `@media (prefers-color-scheme: dark) { ... }` ### Opt-in Media Query Use `@dark:` regardless of config: ```html ``` ## Options ```ts presetWind3({ // Dark mode strategy dark: 'class', // 'class' | 'media' | { light: '.light', dark: '.dark' } // Generate pseudo selector as [group=""] instead of .group attributifyPseudo: false, // CSS custom properties prefix variablePrefix: 'un-', // Utils prefix prefix: '', // Generate preflight CSS preflight: true, // true | false | 'on-demand' // Mark all utilities as !important important: false, // boolean | string (selector) }); ``` ### Important Option Make all utilities `!important`: ```ts presetWind3({ important: true, }); ``` Or scope with selector to increase specificity without `!important`: ```ts presetWind3({ important: '#app', }); ``` Output: `#app :is(.dark .dark\:bg-blue) { ... }` ## Differences from Tailwind CSS ### Quotes Not Supported Template quotes don't work due to extractor: ```html