Core concepts
A reference for the custom functions and directives Tailwind exposes to your CSS.
Directives are custom Tailwind-specific at-rules you can use in your CSS that offer special functionality for Tailwind CSS projects.
Use the @import
directive to inline import CSS files, including Tailwind itself:
@import "tailwindcss";
Use the @theme
directive to define your project's custom design tokens, like fonts, colors, and breakpoints:
@theme { --font-display: "Satoshi", "sans-serif"; --breakpoint-3xl: 1920px; --color-avocado-100: oklch(0.99 0 0); --color-avocado-200: oklch(0.98 0.04 113.22); --color-avocado-300: oklch(0.94 0.11 115.03); --color-avocado-400: oklch(0.92 0.19 114.08); --color-avocado-500: oklch(0.84 0.18 117.33); --color-avocado-600: oklch(0.53 0.12 118.34); --ease-fluid: cubic-bezier(0.3, 0, 0, 1); --ease-snappy: cubic-bezier(0.2, 0, 0, 1); /* ... */}
Learn more about customizing your theme in the theme variables documentation.
Use the @source
directive to explicitly specify source files that aren't picked up by Tailwind's automatic content detection:
@source "../node_modules/@my-company/ui-lib";
Learn more about automatic content detection in the detecting classes in source files documentation.
Use the @utility
directive to add custom utilities to your project that work with variants like hover
, focus
and lg
:
@utility tab-4 { tab-size: 4;}
Learn more about registering custom utilities in the adding custom utilities documentation.
Use the @variant
directive to apply a Tailwind variant to styles in your CSS:
.my-element { background: white; @variant dark { background: black; }}
If you need to apply multiple variants at the same time, use nesting:
.my-element { background: white; @variant dark { @variant hover { background: black; } }}
Learn more about variants in the hover, focus, and other states documentation.
Use the @custom-variant
directive to add a custom variant in your project:
@custom-variant pointer-coarse (@media (pointer: coarse));@custom-variant theme-midnight (&:where([data-theme="midnight"] *));
This lets you write utilities like pointer-coarse:size-48
and theme-midnight:bg-slate-900
.
Learn more about adding custom variants in the registering a custom variant documentation.
Use the @apply
directive to inline any existing utility classes into your own custom CSS:
.select2-dropdown { @apply rounded-b-lg shadow-md;}.select2-search { @apply rounded border border-gray-300;}.select2-results__group { @apply text-lg font-bold text-gray-900;}
This is useful when you need to write custom CSS (like to override the styles in a third-party library) but still want to work with your design tokens and use the same syntax you’re used to using in your HTML.
If you want to use @apply
or @variant
in the <style>
block of a Vue or Svelte component, or within CSS modules, you will need to import your theme configuration to make those values available in that context.
To do this without duplicating the CSS variables in your CSS output, use the @reference
directive instead of the @import
directive when importing your theme:
<template> <h1>Hello world!</h1></template><style> @reference "../../my-theme.css"; h1 { @apply text-2xl font-bold text-red-500; }</style>
If you’re just using the default theme, you can import tailwindcss/theme
directly:
<template> <h1>Hello world!</h1></template><style> @reference "tailwindcss/theme"; h1 { @apply text-2xl font-bold text-red-500; }</style>
Tailwind provides the following build-time functions to make working with colors and the spacing scale easier.
Use the --alpha()
function to generate a color with an opacity applied to it:
.my-element { color: --alpha(var(--color-lime-300) / 50%);}
Use the --spacing()
function to generate a spacing value based on your theme:
.my-element { margin: --spacing(4);}
The following directives and functions exist solely for compatibility with Tailwind CSS v3.x.
Use the @config
directive to load a legacy JavaScript-based configuration file:
@config "../../tailwind.config.js";
The corePlugins
, safelist
and separator
options from the JavaScript-based config are not supported in v4.0.
Use the @plugin
directive to load a legacy JavaScript-based plugin:
@plugin "@tailwindcss/typography";
The @plugin
directive accepts either a package name or a local path.
Use the theme()
function to access your Tailwind theme values using dot notation:
.my-element { margin: theme(spacing.12);}
This function is deprecated, and we recommend referencing theme variables instead.