Description
What version of VS Code are you using?
1.98.2
What version of Tailwind CSS IntelliSense are you using?
0.14.11
What version of Tailwind CSS are you using?
"tailwindcss": "^4.0.15",
What package manager are you using?
npm
What operating system are you using?
OSX 15.3.2
Tailwind config
export default {
prefix: '', // or just remove this line
// other config...
}
VS Code settings
{
"git.ignoreMissingGitWarning": true,
"filePropertiesViewer.outputStylePath": "",
"editor.linkedEditing": true,
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"security.workspace.trust.untrustedFiles": "open",
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#FC40A7",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#C27CF8",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.autoSave": "onFocusChange",
"liveServer.settings.CustomBrowser": "chrome",
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"prettier.bracketSpacing": true,
"prettier.arrowParens": "avoid",
"prettier.endOfLine": "lf",
"prettier.printWidth": 180,
"prettier.semi": true,
"prettier.useTabs": false,
"prettier.tabWidth": 2,
"prettier.proseWrap": "preserve",
"prettier.jsxSingleQuote": false,
"prettier.jsxBracketSameLine": false,
"prettier.htmlWhitespaceSensitivity": "css",
"prettier.insertPragma": false,
"prettier.requirePragma": false,
"prettier.quoteProps": "as-needed",
"prettier.bracketSameLine": false,
"prettier.singleAttributePerLine": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"todohighlight.defaultStyle": {},
"todohighlight.isEnable": true,
"todohighlight.keywords": [
{
"text": "NOTE:",
"color": "#ff0000",
"backgroundColor": "yellow",
"overviewRulerColor": "grey"
}
],
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.editor.enablePreview": false,
"workbench.editorAssociations": {
"*.svg": "default"
},
"github.copilot.selectedCompletionModel": "gpt-4o-copilot",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[twig]": {
"editor.defaultFormatter": "mblode.twig-language-2"
},
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"auto-close-tag.activationOnLanguage": [
"xml",
"php",
"blade",
"ejs",
"jinja",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"plaintext",
"markdown",
"vue",
"liquid",
"erb",
"lang-cfml",
"cfml",
"HTML (EEx)",
"HTML (Eex)",
"plist"
],
}
Reproduction URL
n/a
Describe your issue
Tailwind classes have started to be suggested with a 'tw-' prefix — without me having (knowingly!) asked for this.
What is particularly annoying is that the NON tw-prefix tailwind colors no longer have the useful colour swatch, while the 'tw-' prefix ones do?!!
See attached

here-s a screenshot of what the prompt does — I want to carry on using 'regualr' tailwind classes without the prefix ideally!
See screenshot below