# Kendo React Style

> Generates CSS variables and custom themes for KendoReact applications using the Kendo Design System. Use when the user wants to create a custom theme, change colors, update visual style, apply brand guidelines, or customize CSS variables. Trigger on "custom theme", "change colors", "apply brand", "CSS variables", "theme generation", "dark theme", "style assistant", "Kendo theme".

- Skill: `telerik/kendo-react-style-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add telerik/kendo-react-style-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/telerik/kendo-react-style-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Design & Media
- Author: telerik (https://skillmd.com/u/telerik)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/telerik/kendo-react-style-2

---


## KendoReact — Style Assistant

### How to Apply Generated CSS Variables

After calling the tool, apply the generated CSS variables using one of the methods described in [application-methods.md](application-methods.md).

This skill owns the progressive disclosure decision for theme support files. Read [application-methods.md](application-methods.md) for every theming-focused use so downstream guidance can include the application method. Do not read unrelated component, layout, icon, validation, or accessibility files from this skill.

### Calling the Style Assistant

Use the `kendo_style_assistant` MCP tool to generate CSS variables for a custom Kendo theme based on a natural language description.

Preserve user-specified theme requirements exactly in the tool query. If the user provides colors, brand guidelines, or theme constraints, copy them verbatim into `query`, including hex values, RGB/RGBA/HSL values, CSS variable names and values, named roles such as primary/accent/success/error, theme mode, contrast requirements, density, mood, typography notes, and palette constraints. Do not paraphrase or normalize exact color requirements before calling the tool.

**Tool call:**
```
kendo_style_assistant({
    query="<Natural language description of the desired visual style or theme>"
})
```

**Examples:**
```
kendo_style_assistant({
    query="Create a modern dark theme with high contrast and blue accents."
})
```

```
kendo_style_assistant({
    query="Apply our brand colors: primary #2563EB (blue), success #16A34A (green), error #DC2626 (red). Use a clean, minimal light theme."
})
```

```
kendo_style_assistant({
    query="Create a warm, earthy theme with orange as the primary color and a neutral background."
})
```

### After Retrieval

The tool returns CSS variable declarations. Apply them using one of the four methods in [application-methods.md](application-methods.md). **Method 1 (Global CSS) is recommended** for most cases.

