# Uno Toolkit Lightweight Styling

> Apply lightweight styling to Uno Toolkit controls by overriding resource keys. Change colors, fonts, spacing without custom styles.

- Skill: `unoplatform/uno-toolkit-lightweight-styling` (Agent Skill)
- Install (CLI): `npx skillmds@latest add unoplatform/uno-toolkit-lightweight-styling`
- Raw SKILL.md: https://api.skillmd.com/api/skills/unoplatform/uno-toolkit-lightweight-styling/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: unoplatform (https://skillmd.com/u/unoplatform)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/unoplatform/uno-toolkit-lightweight-styling

---


# Uno Toolkit Lightweight Styling — Agent Skill

## Workflow

> **Docs lookup:** call `uno_platform_docs_search(...)` first, then `uno_platform_docs_fetch(sourcePath="…")` using the `sourcePath` field from a result (a relative `.md` path; add the result's `anchor` for a section). Never pass a URL, a `.html` link, or a hand-built path.

### Step 1: Fetch the Lightweight Styling Documentation

```
uno_platform_docs_search("Uno Toolkit lightweight styling resource keys override controls")
```

Primary documentation page:
- **Toolkit Lightweight Styling**: `external/uno.toolkit.ui/doc/lightweight-styling.md`

Fetch the page:

```
uno_platform_docs_fetch(sourcePath="external/uno.toolkit.ui/doc/lightweight-styling.md")
```

### Step 2: For Specific Control Resource Keys

Each control's documentation page lists its resource keys. Search for the specific control:

```
uno_platform_docs_search("Uno Toolkit [ControlName] lightweight styling resource keys")
```

## Key Principles (Stable)

- Override resource keys at App, Page, or Control level
- Resource keys follow naming patterns: `{ControlName}{State}{Property}`
- Control-level overrides use `<Control.Resources>` or `ResourceExtensions`
- No need to redefine entire styles/templates
- Each control's doc page lists available resource keys

## Related Skills

- [[uno-toolkit-resource-extensions]] — Per-control resource dictionary
- [[uno-themes-material]] — Material design lightweight styling

