css-tailwind-theme-pipeline

Streamline TowerAI web app CSS with Tailwind CSS and MUI integration.

Updated Jan 26, 2026
One-click install
npx skills add https://github.com/thehivegroup-ai/ai-development --skill css-tailwind-theme-pipeline
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: css-tailwind-theme-pipeline
Source: https://github.com/thehivegroup-ai/ai-development/tree/main/modules/projects/towerai/cursor/skills/css-tailwind-theme-pipeline
Command: npx skills add https://github.com/thehivegroup-ai/ai-development --skill css-tailwind-theme-pipeline

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill ensures TowerAI web app's global CSS architecture is optimized with Tailwind and MUI integration, eliminating duplicate theme blocks and conflicting typography.

Core Features & Use Cases

  • Single Tailwind Pipeline: Prevents multiple @import 'tailwindcss' instances in the app.
  • Canonical Theme Source: Uses a single @theme source in apps/web/src/styles/theme.css.
  • Primitive Compatibility: Ensures @source includes packages/ui/src/**/*.{ts,tsx} for Untitled UI primitives.
  • MUI Coexistence: Avoids conflicts between MUI and Untitled/tokens on font family.
  • Use Case: Ideal for teams looking to standardize and maintain a clean, cohesive CSS structure in their TowerAI web applications.

Quick Start

Use the css-tailwind-theme-pipeline skill to build a new theme for the TowerAI web app by editing the 'theme.css' file located at 'apps/web/src/styles'.

Frequently Asked Questions about css-tailwind-theme-pipeline

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix Tailwind CSS and MUI font family conflicts in my web app?

Resolve Tailwind CSS and MUI font family conflicts by consolidating typography tokens into a single canonical theme source file, ensuring both systems reference identical font families without overriding each other.

Why does my web app have duplicate Tailwind CSS theme blocks?

Duplicate Tailwind CSS theme blocks typically occur when multiple `@import 'tailwindcss'` instances are loaded across different project files. Consolidating these imports into a single pipeline entry point eliminates the duplication and ensures a unified theme cascade.

How to configure Tailwind CSS to include Untitled UI primitives?

To configure Tailwind CSS for Untitled UI primitives, include `@source` with the `packages/ui/src/**/*.{ts,tsx}` glob pattern in your global theme file. This ensures Tailwind scans and generates the necessary utility classes for primitive components.

Can I use MUI and Tailwind CSS together in the same frontend project?

You can use MUI and Tailwind CSS together by structuring a unified global CSS architecture. This approach manages theme consistency and prevents style conflicts by ensuring both frameworks draw from a single canonical theme configuration.

What is a canonical theme source in Tailwind CSS architecture?

A canonical theme source in Tailwind CSS is a single `@theme` declaration block located in a central CSS file. It serves as the authoritative source for design tokens, preventing scattered configurations and ensuring consistent styling across the entire application.