smithery.ai

angular-tailwind

Minimal viable guide to setup TailwindCSS v4 with PostCSS in Angular.

First seen Apr 25, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 869 B
  • docs SUMMARY.md 93 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Tailwind CSS Setup (Angular)

This skill guides you through the minimal setup to get Tailwind CSS running in an Angular project.

1. Install Dependencies

Run the following command to install Tailwind CSS, PostCSS, and the Tailwind PostCSS plugin:

npm install tailwindcss @tailwindcss/postcss postcss

2. Configure PostCSS

Create a file named .postcssrc.json in the root of your project (where package.json is) and add the following content:

File: .postcssrc.json

{
  "plugins": {
    "@tailwindcss/postcss": {}
  }
}

3. Configure Styles

Add the Tailwind CSS import to your global styles file.

File: src/styles.css

@import "tailwindcss";

That's it! Tailwind CSS is now ready to use.