Tailwind Mode in Zed

Planted:

By default the CSS mode in the Zed code editor doesn’t like the extra @-rules that Tailwind uses. So, if you have a project that is using Tailwind 4+, then you can add this to a .zed/settings.json file inside that project:

"languages": {
	"CSS": {
		"language_servers": ["tailwindcss-language-server"]
	}
}