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?
v1.99.3
What version of Tailwind CSS IntelliSense are you using?
v0.14.16
What version of Tailwind CSS are you using?
4.1.3
What package manager are you using?
npm
What operating system are you using?
Ubuntu Linux
Tailwind config
Default
VS Code settings
{ "files.associations": { "*.css": "tailwindcss" }, "tailwindCSS.classFunctions": ["clsx"] }
Reproduction:
@theme { --color-test-intellisense: hsl(240deg 100% 50%); }
Code:
const COLORS_BY_STATUS = { success: clsx("bg-test-intellisense"), error: "", };
The text was updated successfully, but these errors were encountered:
This looks like we're not parsing the hsl value for color swatches on utilities:
Even simple things like completions and @apply don't show the swatch for the hsl color. This is probably a regex problem or something.
@apply
(the color swatch next to hsl(…) itself is provided by the CSS language server so is unrelated)
Sorry, something went wrong.
Thanks for the quick fix!
c14eb12
Gonna try to get a release out this week 👍
thecrypticace
Successfully merging a pull request may close this issue.
What version of VS Code are you using?
v1.99.3
What version of Tailwind CSS IntelliSense are you using?
v0.14.16
What version of Tailwind CSS are you using?
4.1.3
What package manager are you using?
npm
What operating system are you using?
Ubuntu Linux
Tailwind config
Default
VS Code settings
Reproduction:
Code:
The text was updated successfully, but these errors were encountered: