A set of Sass mixins, functions, and variables used to create themes for a variety of UI frameworks built by Infragistics.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Mature repo (>1y old)
- ✓Documented (README)
git clone https://github.com/IgniteUI/igniteui-themingMCP Servers overview
<h1 align="center">
Ignite UI Theming - from Infragistics
</h1>
[](https://badge.fury.io/js/igniteui-theming)
The Ignite UI Theming repository collects a set of Sass mixins, functions, and variables used to create themes for a variety of UI frameworks built by Infragistics. The theming package makes it super easy to create palettes, elevations and typography styles for your projects.
## Repository Structure
This repository is an npm workspaces monorepo with two packages:
| Package | Name | Description |
| ------------------ | ---------------------- | ----------------------------------------------------------- |
| `packages/theming` | `igniteui-theming` | Sass source, JSON build artifacts, published to npm |
| `packages/mcp` | `igniteui-theming-mcp` | MCP server sources, built into `packages/theming/dist/mcp/` |
The `igniteui-theming` package is the only published artifact — it includes both the Sass theming library and the MCP server binary.
The MCP server is also listed in the [MCP Registry](https://registry.modelcontextprotocol.io) as `io.github.IgniteUI/igniteui-theming`. The `server.json` at the repo root is its registry manifest, published automatically on release.
Common commands from the repo root:
```bash
npm install # install all workspace dependencies
npm run build # build theming + MCP in dependency order
npm test # run all tests across both packages
npm run lint # lint all packages
```
## Palettes
We provide four predefined palettes - material, bootstrap, fluent and indigo that have all the necessary colors along with diffent variants of those colors to make it even easier picking the right one for your case. Here's what they look like:

To access any of the colors in the palettes, you can use the `color` function:
```scss
background: color($light-material-palette, 'primary', 500);
```
You can take a further look on what color functions and mixins the package contains and how to use them in the [Colors Wiki Page](<https://github.com/IgniteUI/igniteui-theming/wiki/Colors-(Draft)>)
## Typography
Another valuable module of our theming package is the typography, helping you have consistency all over your project. There are again four typography presets for the four themes that we provide out of the box.

You can set any of the typefaces by using the `typography` mixin, which accepts 2 arguments(font-family and type-scale). By default the typography is using the material typeface and type-scale.
```scss
@include typography($font-family: $material-typeface, $type-scale: $material-type-scale);
```
Learn more about the typography module in the package by checking out the [Typography Wiki Page](<https://github.com/IgniteUI/igniteui-theming/wiki/Typography-(Draft)>)
## Elevations
The theming package is providing one preset of shadows that can be used to give your components a lift. They're super helpful using with buttons, cards, navigation bars, etc.

You can set elevations 0-24, by using the `elevation` function, which accepts the elevation level as an argument:
```scss
box-shadow: elevation(12);
```
Learn more about elevations and their abilities in the [Elevations Wiki Page](<https://github.com/IgniteUI/igniteui-theming/wiki/Elevations-(draft)>)
## Usage
In order to use the Ignite UI Theming in your application you should install the `igniteui-theming` package:
```
npm install igniteui-theming
```
Next, you will need to **use** it in the file that you want like this:
```scss
@use '.../node_modules/igniteui-theming/' as *;
```
You can also **use** just a fraction of the package:
```scss
@use '.../node_modules/igniteui-theming/sass/color' as *;
```
We provide presets for **material, bootstrap, fluent and indigo** themes for the color(light and dark palettes), typography and elevations fractions. You can import them into your scss file like this:
```scss
@use '.../node_modules/igniteui-theming/sass/typography/presets' as *;
```
You can read more about what the package contains on the [Wiki page](https://github.com/IgniteUI/igniteui-theming/wiki)
## Linting and Testing
To scan the project for linting errors, run
```
npm run lint
```
To run the suite of tests, run
```
npm run test
```
## Testing and Debugging
### Preview Palettes
Run from `packages/theming`. Pass the palette (`material`, `bootstrap`, `fluent`, `indigo`) and variant (`light` or `dark`).
```bash
npm run preview:palette -- --palette=material --variant=light
```
---
## MCP Server (AI-Assisted Theming)
The Ignite UI Theming package includes a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that enables AI assistants to generate production-ready theming code for your Ignite UI applications. This MCP server is part of the larger [AI-assisted development toolchain](https://www.infragistics.com/ai-assisted-app-development) for Ignite UI.
### What is MCP?
The Model Context Protocol allows AI assistants (like Claude, GitHub Copilot, and others) to connect to external tools and data sources. The Ignite UI Theming MCP server acts as an expert theming assistant that can:
- 🎨 **Generate color palettes** with automatic shade variations
- 📝 **Create typography systems** following design standards
- 🌓 **Build complete themes** for light and dark modes
- 🎯 **Customize components** with design tokens
- ✅ **Validate colors** for accessibility compliance
### Quick Start
Most users don't need to clone anything. The server ships inside the published `igniteui-theming` package and is listed in the [MCP Registry](https://registry.modelcontextprotocol.io) as `io.github.IgniteUI/igniteui-theming` — clients that support registry installation can add it by that name, and everything else uses the `npx` configuration shown below.
To run it from source instead:
#### 1. Clone and Build
Clone the repository and build:
```bash
npm install
npm run build
```
#### 2. Configure Your AI Client
The MCP server works with any MCP-compatible client. Here are setup instructions for popular clients:
<details>
<summary><strong>VS Code</strong> (with MCP-compatible extensions)</summary>
**For local development** - Create or edit `.vscode/mcp.json`:
```json
{
"servers": {
"igniteui-theming": {
"command": "node",
"args": ["/absolute/path/to/igniteui-theming/packages/theming/dist/mcp/index.js"]
}
}
}
```
**Using published package**:
```json
{
"servers": {
"igniteui-theming": {
"command": "npx",
"args": ["-y", "igniteui-theming"]
}
}
}
```
</details>
<details>
<summary><strong>WebStorm / JetBrains IDEs</strong></summary>
1. Go to **Settings → Tools → AI Assistant → MCP Servers**
2. Click **+ Add MCP Server**
3. Configure:
- **Name**: `igniteui-theming`
- **Command**: `node` (for local) or `npx` (for package)
- **Arguments**:
- Local: `/absolute/path/to/igniteui-theming/packages/theming/dist/mcp/index.js`
- Package: `-y igniteui-theming`
4. Click **OK** and restart AI Assistant
</details>
<details>
<summary><strong>Claude Desktop</strong></summary>
Add to your configuration file:
**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
**Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
**For local development**:
```json
{
"mcpServers": {
"igniteui-theming": {
"command": "node",
"args": ["/absolute/path/to/igniteui-theming/packages/theming/dist/mcp/index.js"]
}
}
}
```
**Using published package**:
```json
{
"mcpServers": {
"igniteui-theming": {
"command": "npx",
"args": ["-y", "igniteui-theming"]
}
}
}
```
</details>
<details>
<summary><strong>Cursor</strong></summary>
Create or edit `.cursor/mcp.json` in your project:
**For local development**:
```json
{
"mcpServers": {
"igniteui-theming": {
"command": "node",
"args": ["/absolute/path/to/igniteui-theming/packages/theming/dist/mcp/index.js"]
}
}
}
```
**Using published package**:
```json
{
"mcpServers": {
"igniteui-theming": {
"command": "npx",
"args": ["-y", "igniteui-theming"]
}
}
}
```
</details>
### What Can It Do?
#### 🎨 Create Complete Themes
Simply describe your theme to your AI assistant:
> "Create a Material Design dark theme for my Angular app with that takes inspiration from the Gruvbox color scheme."
The AI will generate production-ready Sass code with:
- Color palette with all shade variations
- Typography setup with proper type scales
- Elevation shadows
- Platform-specific imports and configuration
#### 🌈 Generate Color Palettes
> "Generate a light theme palette using teal as primary and purple as secondary"
Get perfectly calculated color shades following design system standards.
#### 📝 Setup Typography
> "Set up typography using Inter font with Material Design type scale for Web Components"
Get proper typography configuration with font families and responsive type scales.
#### 🎯 Customize Components
> "What design tokens are available for the button component?"
>
> "Create a flat button theme with purple background and white text"
Discover and customize individual component styles using design tokens.
### Available Capabilities
The MCP server provides **8 tools** and **16 resources**:
#### Tools (Actions)
| Tool | Description |
| ----------------------------- | --------------------------------------------------------------- |
What people ask about igniteui-theming
What is IgniteUI/igniteui-theming?
+
IgniteUI/igniteui-theming is mcp servers for the Claude AI ecosystem. A set of Sass mixins, functions, and variables used to create themes for a variety of UI frameworks built by Infragistics. It has 27 GitHub stars and its last recorded update is dated 2026-08-26.
How do I install igniteui-theming?
+
You can install igniteui-theming by cloning the repository (https://github.com/IgniteUI/igniteui-theming) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is IgniteUI/igniteui-theming safe to use?
+
Our security agent has analyzed IgniteUI/igniteui-theming and assigned a Trust Score of 92/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains IgniteUI/igniteui-theming?
+
IgniteUI/igniteui-theming is maintained by IgniteUI. The last recorded GitHub activity is dated 2026-08-26, with 14 open issues.
Are there alternatives to igniteui-theming?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy igniteui-theming to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/igniteui-igniteui-theming)<a href="https://claudewave.com/repo/igniteui-igniteui-theming"><img src="https://claudewave.com/api/badge/igniteui-igniteui-theming" alt="Featured on ClaudeWave: IgniteUI/igniteui-theming" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!