Last active
July 3, 2025 21:25
-
-
Save Tucker-Eric/7481054ecb235f1733b82442bd2f80c9 to your computer and use it in GitHub Desktop.
tailwind css vscode helper for custom directives.
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": 1.1, | |
"atDirectives": [ | |
{ | |
"name": "@tailwind", | |
"description": "Use the `@tailwind` directive to insert Tailwind's `base`, `components`, `utilities` and `screens` styles into your CSS.", | |
"references": [ | |
{ | |
"name": "Tailwind Documentation", | |
"url": "https://tailwindcss.com/docs/functions-and-directives#tailwind" | |
} | |
] | |
}, | |
{ | |
"name": "@apply", | |
"description": "Use the `@apply` directive to inline any existing utility classes into your own custom CSS. This is useful when you find a common utility pattern in your HTML that you’d like to extract to a new component.", | |
"references": [ | |
{ | |
"name": "Tailwind Documentation", | |
"url": "https://tailwindcss.com/docs/functions-and-directives#apply" | |
} | |
] | |
}, | |
{ | |
"name": "@responsive", | |
"description": "You can generate responsive variants of your own classes by wrapping their definitions in the `@responsive` directive:\n```css\n@responsive {\n .alert {\n background-color: #E53E3E;\n }\n}\n```\n", | |
"references": [ | |
{ | |
"name": "Tailwind Documentation", | |
"url": "https://tailwindcss.com/docs/functions-and-directives#responsive" | |
} | |
] | |
}, | |
{ | |
"name": "@screen", | |
"description": "The `@screen` directive allows you to create media queries that reference your breakpoints by **name** instead of duplicating their values in your own CSS:\n```css\n@screen sm {\n /* ... */\n}\n```\n…gets transformed into this:\n```css\n@media (min-width: 640px) {\n /* ... */\n}\n```\n", | |
"references": [ | |
{ | |
"name": "Tailwind Documentation", | |
"url": "https://tailwindcss.com/docs/functions-and-directives#screen" | |
} | |
] | |
}, | |
{ | |
"name": "@variants", | |
"description": "Generate `hover`, `focus`, `active` and other **variants** of your own utilities by wrapping their definitions in the `@variants` directive:\n```css\n@variants hover, focus {\n .btn-brand {\n background-color: #3182CE;\n }\n}\n```\n", | |
"references": [ | |
{ | |
"name": "Tailwind Documentation", | |
"url": "https://tailwindcss.com/docs/functions-and-directives#variants" | |
} | |
] | |
}, | |
{ | |
"name": "@custom-variant", | |
"description": "In addition to using the variants that ship with Tailwind, you can also add your own custom variants using the @custom-variant directive", | |
"references": [ | |
{ | |
"name": "Tailwind Documentation", | |
"url": "https://tailwindcss.com/docs/adding-custom-styles#adding-custom-variants" | |
} | |
] | |
}, | |
{ | |
"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" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment