Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Igniteui Theming

FreeMaintained

A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.

GitHubEmbed

About

A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.

README

Ignite UI Theming - from Infragistics

npm version

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.

Common commands from the repo root:

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:

Palettes

To access any of the colors in the palettes, you can use the color function:

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

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.

Typography

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.

@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

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.

Elevations

You can set elevations 0-24, by using the elevation function, which accepts the elevation level as an argument:

box-shadow: elevation(12);

Learn more about elevations and their abilities in the Elevations Wiki Page

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:

@use '.../node_modules/igniteui-theming/' as *;

You can also use just a fraction of the package:

@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:

@use '.../node_modules/igniteui-theming/sass/typography/presets' as *;

You can read more about what the package contains on the Wiki page

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).

npm run preview:palette -- --palette=material --variant=light

MCP Server (AI-Assisted Theming)

The Ignite UI Theming package includes a Model Context Protocol (MCP) 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 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

1. Clone and Build

Clone the repository and build:

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:

VS Code (with MCP-compatible extensions)

For local development - Create or edit .vscode/mcp.json:

{
  "servers": {
    "igniteui-theming": {
      "command": "node",
      "args": ["/absolute/path/to/igniteui-theming/packages/theming/dist/mcp/index.js"]
    }
  }
}

Using published package:

{
  "servers": {
    "igniteui-theming": {
      "command": "npx",
      "args": ["-y", "igniteui-theming", "igniteui-theming-mcp"]
    }
  }
}
WebStorm / JetBrains IDEs
  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: igniteui-theming igniteui-theming-mcp
  4. Click OK and restart AI Assistant
Claude Desktop

Add to your configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

For local development:

{
  "mcpServers": {
    "igniteui-theming": {
      "command": "node",
      "args": ["/absolute/path/to/igniteui-theming/packages/theming/dist/mcp/index.js"]
    }
  }
}

Using published package:

{
  "mcpServers": {
    "igniteui-theming": {
      "command": "npx",
      "args": ["-y", "igniteui-theming", "igniteui-theming-mcp"]
    }
  }
}
Cursor

Create or edit .cursor/mcp.json in your project:

For local development:

{
  "mcpServers": {
    "igniteui-theming": {
      "command": "node",
      "args": ["/absolute/path/to/igniteui-theming/packages/theming/dist/mcp/index.js"]
    }
  }
}

Using published package:

{
  "mcpServers": {
    "igniteui-theming": {
      "command": "npx",
      "args": ["-y", "igniteui-theming", "igniteui-theming-mcp"]
    }
  }
}

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
detect_platform Auto-detect which Ignite UI platform your project uses
create_palette Generate color palette with automatic shade calculations
create_custom_palette Create palette with fine-grained control over individual shades
create_typography Setup typography with font families and type scales
create_elevations Configure elevation shadows
create_theme Generate complete theme (palette + typography + elevations)
get_component_design_tokens Discover customizable properties for components
create_component_theme Generate component-specific theme code

Resources (Reference Data)

  • Platform Information: Configuration for Angular, Web Components, React, and Blazor
  • Preset Libraries: Pre-built palettes, typography, and elevation sets
  • Color Guidance: Best practices for color selection and usage
  • Design System Schemas: Material, Bootstrap, Fluent, and Indigo configurations

Supported Platforms

  • Angular - igniteui-angular
  • Web Components - igniteui-webcomponents
  • React - igniteui-react
  • Blazor - igniteui-blazor

Example Interactions

Creating a new project theme

You: "I'm starting a new Angular project with Ignite UI. Create a complete Material Design theme with primary blue, secondary coral, light theme, and Roboto font"

AI: Uses create_theme tool and generates complete Sass code ready to use

Adding dark mode

You: "I need a dark mode version with the same primary blue but dark surface"

AI: Uses create_theme with variant: "dark" and generates dark theme code

Customizing components

You: "What properties can I customize on the card component?"

AI: Uses get_component_design_tokens to show available tokens

You: "Make the card have a light gray background with subtle shadow"

AI: Uses create_component_theme to generate component theme code

Full Documentation

For detailed documentation including:

  • Complete tool parameter reference
  • All prompt examples
  • Platform-specific differences
  • Troubleshooting guide
  • Development instructions

See the MCP Server README

Development Scripts

# Build for production (theming + MCP)
npm run build

# Run tests
npm run test

# Debug with MCP Inspector (from packages/mcp)
npm run inspect

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

from github.com/IgniteUI/igniteui-theming

Install Igniteui Theming in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install igniteui-theming

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add igniteui-theming -- npx -y igniteui-theming

Step-by-step: how to install Igniteui Theming

FAQ

Is Igniteui Theming MCP free?

Yes, Igniteui Theming MCP is free — one-click install via Unyly at no cost.

Does Igniteui Theming need an API key?

No, Igniteui Theming runs without API keys or environment variables.

Is Igniteui Theming hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Igniteui Theming in Claude Desktop, Claude Code or Cursor?

Open Igniteui Theming on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Changes

Versions and requested access over time.

  • New version published
  • New version published

Related MCPs

LibreOffice Tools

Enables AI agents to read, write, and edit Office documents via LibreOffice with token-efficient design. Supports multiple formats including DOCX, XLSX, PPTX, a

passerbyflutterby passerbyflutter

dannote/figma-use

Full Figma control: create shapes, text, components, set styles, auto-layout, variables, export. 80+ tools.

dannoteby dannote

Logo.dev

Search and retrieve company logos by brand or domain. Customize size, format, and theme to match your design needs. Accelerate design, prototyping, and content

NOVA-3951by NOVA-3951

Design Inspiration Server

Searches top design platforms like Dribbble and Behance to provide UI inspiration, color palettes, and layout patterns via the Serper API. It allows users to re

YonasValentinby YonasValentin

PIX4Dmatic

Enables GUI automation for controlling PIX4Dmatic on Windows through MCP. Supports launching, focusing, capturing screenshots, sending hotkeys, clicking UI elem

jangjo123by jangjo123

Figma

Extract design specs and assets

Figmaby Figma

mcp-dockmaster

An Open-Sourced UI to install and manage MCP servers for Windows, Linux and macOS.

by Community

ariekogan/ateam-mcp

Build, validate, and deploy multi-agent AI solutions on the ADAS platform. Design skills with tools, manage solution lifecycle, and connect from any AI environm

ariekoganby ariekogan

thinkchainai/mcpbundles

MCP Bundles: Create custom bundles of tools and connect providers with OAuth or API keys. Use one MCP server across thousands of integrations, with programmatic

thinkchainaiby thinkchainai

arikusi/nakkas

MCP server that turns AI into an SVG artist. One rendering engine with JSON config, AI controls all design parameters. CSS @keyframes + SMIL animations, 16+ ele

arikusiby arikusi

Compare Igniteui Theming with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All design MCPs