We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What version of VS Code are you using?
1.96.0
What version of Tailwind CSS IntelliSense are you using?
0.12.16
What version of Tailwind CSS are you using?
4.0.0-beta.6
What package manager are you using?
Deno v2
What operating system are you using?
Windows
Tailwind config
@import "tailwindcss"; @plugin "tailwindcss-animate"; @plugin "@tailwindcss/forms"; @font-face { font-family: "Nunito"; src: url("fonts/Nunito-Italic.ttf"); font-style: italic; } @font-face { font-family: "Nunito"; src: url("fonts/Nunito.ttf"); } @source "./src"; @theme { --default-font-family: "Nunito" }
VS Code settings
{ "explorer.confirmDragAndDrop": false, "javascript.updateImportsOnFileMove.enabled": "always", "typescript.updateImportsOnFileMove.enabled": "always", "editor.inlineSuggest.enabled": true, "editor.acceptSuggestionOnEnter": "smart", "editor.tabSize": 2, "editor.insertSpaces": false, "[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "github.copilot.enable": { "*": true, "yaml": false, "plaintext": true, "markdown": false, "typescript": false, "typescriptreact": false }, "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "files.exclude": { "**/.classpath": true, "**/.project": true, "**/.settings": true, "**/.factorypath": true }, "sonarlint.rules": { "typescript:S125": { "level": "off" }, "typescript:S3358": { "level": "off" }, "typescript:S1854": { "level": "off" }, "typescript:S1117": { "level": "off" }, "typescript:S4123": { "level": "off" } }, "[javascriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "liveshare.connectionMode": "relay", "editor.bracketPairColorization.enabled": false, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "editor.accessibilitySupport": "off", "[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "files.associations": { "*.mdx": "markdown", "*.iaentitymodel": "json", "*.bbmodel": "jsonc", ".env.local": "env", "*.css": "tailwindcss" }, "security.workspace.trust.untrustedFiles": "open", "git.openRepositoryInParentFolders": "never", "totalTypeScript.hideAllTips": false, "totalTypeScript.hideBasicTips": true, "files.autoSave": "afterDelay", "workbench.editor.customLabels.patterns": { "**/app/**/page.tsx": "${dirname} - Page", "**/app/**/layout.tsx": "${dirname} - Layout", "**/component/**/index.tsx": "${dirname} - Component" }, "workbench.colorTheme": "Vercel (Dark)", "[markdown]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "git.confirmSync": false, "git.enableSmartCommit": true, "npm.packageManager": "pnpm" }
Reproduction URL
https://play.tailwindcss.com/TYzpS64fSP
Describe your issue
Tailwind v4 only ships with inset-shadow xs, 2xs, and sm, but intellisense incorrectly has values for above that, such as md.
inset-shadow
xs
2xs
sm
md
The text was updated successfully, but these errors were encountered:
Ah this is a bug in Tailwind itself. We're suggesting from the wrong theme key.
Sorry, something went wrong.
thecrypticace
No branches or pull requests
What version of VS Code are you using?
1.96.0
What version of Tailwind CSS IntelliSense are you using?
0.12.16
What version of Tailwind CSS are you using?
4.0.0-beta.6
What package manager are you using?
Deno v2
What operating system are you using?
Windows
Tailwind config
VS Code settings
Reproduction URL
https://play.tailwindcss.com/TYzpS64fSP
Describe your issue
Tailwind v4 only ships with
inset-shadow
xs
,2xs
, andsm
, but intellisense incorrectly has values for above that, such asmd
.The text was updated successfully, but these errors were encountered: