Created
October 20, 2025 12:14
-
-
Save pqoqubbw/6c5b09e58cd44bd89b4d8c16a2a0bc18 to your computer and use it in GitHub Desktop.
.vscode/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "css.customData": [".vscode/tailwind.json"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 4.0, | |
| "atDirectives": [ | |
| { | |
| "name": "@import", | |
| "description": "Use the `@import` directive to inline import CSS files, including Tailwind itself.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#import-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@theme", | |
| "description": "Use the `@theme` directive to define your project's custom design tokens, like fonts, colors, and breakpoints.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#theme-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@source", | |
| "description": "Use the `@source` directive to explicitly specify source files that aren't picked up by Tailwind's automatic content detection.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#source-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@utility", | |
| "description": "Use the `@utility` directive to add custom utilities to your project that work with variants like `hover`, `focus` and `lg`.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#utility-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@variant", | |
| "description": "Use the `@variant` directive to apply a Tailwind variant to styles in your CSS. If you need to apply multiple variants at the same time, use nesting.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#variant-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@custom-variant", | |
| "description": "Use the `@custom-variant` directive to add a custom variant in your project. This lets you write utilities like `pointer-coarse:size-48` and `theme-midnight:bg-slate-900`.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#custom-variant-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@apply", | |
| "description": "Use the `@apply` directive to inline any existing utility classes into your own custom CSS. 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.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#apply-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@reference", | |
| "description": "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 variables, custom utilities, and custom variants to make those values available in that context. To do this without duplicating any CSS in your output, use the `@reference` directive to import your main stylesheet for reference without actually including the styles.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#reference-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@config", | |
| "description": "Use the `@config` directive to load a legacy JavaScript-based configuration file.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#config-directive" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "@plugin", | |
| "description": "Use the `@plugin` directive to load a Javascript-based plugin. The `@plugin` directive accepts either a package name or a local path.", | |
| "references": [ | |
| { | |
| "name": "Tailwind Documentation", | |
| "url": "https://tailwindcss.com/docs/functions-and-directives#plugin-directive" | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment