MATLAB Theming
Style MATLAB charts with color palettes and — for uifigure apps — apply the R2025a Theme API for brand colors, dark mode, and component styling.
When to Use This Skill
Use this skill when:
- Setting
colororder for chart series colors (any context)
- Choosing or importing a color palette for plots
- Organizing brand colors into a reusable struct
- Applying a custom
colormap for continuous data
- Implementing dark mode with
fliplightness() (uifigure)
- Wiring
ThemeChangedFcn to react to OS/user theme changes (uifigure)
- Using
uistyle for conditional formatting in tables/trees (uifigure)
- Importing an external color scheme (Material Design, Adobe Color, Tailwind)
When NOT to Use This Skill
- Choosing chart types or building charts from scratch (use
matlab-build-chart)
- Building a full app layout (use
matlab-build-app — it invokes this skill for theming sub-steps)
- Setting colors on individual plot elements as a one-off (just use the
Color property directly)
- Non-MATLAB styling (CSS, HTML themes for web apps)
Critical Rules
Universal (all contexts)
- MUST centralize brand/palette colors in a struct — never scatter RGB values
- ALWAYS use
colororder() for categorical chart series colors
- ALWAYS use
colormap() for continuous scalar-mapped colors
- NEVER confuse
colororder (categorical series) with colormap (continuous gradient)
Additional rules for uifigure apps (R2025a Theme API)
- MUST use R2025a Theme API — do NOT manually set figure background or standard component colors
- MUST use
fliplightness() to derive dark variants unless explicitly designing custom dark colors
- NEVER set a component's color explicitly unless branding requires it — breaks theme adaptation
- ALWAYS use the semantic token vocabulary defined below for cross-path consistency
Semantic Token Vocabulary
Both MATLAB and web implementations map to these common tokens. When importing an external color scheme, map its colors to these tokens once.
| Token |
Purpose |
MATLAB (struct field) |
Web (CSS variable) |
primary |
Brand/action color (buttons, links, active states) |
theme.primary |
--accent |
onPrimary |
Text/icon on primary background |
theme.onPrimary |
--accent-text |
secondary |
Secondary brand color (less prominent actions) |
theme.secondary |
--secondary |
error |
Error/destructive state |
theme.error |
--error |
success |
Success/confirmation state |
theme.success |
--success |
warning |
Warning/caution state |
theme.warning |
--warning |
border |
Custom borders and dividers |
theme.border |
--border |
plotColors |
Chart series colors (Nx3 RGB matrix) |
theme.plotColors |
N/A (use chart library config) |
MATLAB note: Surface/text colors (--bg-primary, --text-primary in CSS) are NOT in the MATLAB theme struct. The R2025a Theme API handles those automatically. Only define brand/custom colors.
Quick Start
Color palettes for any figure
colors = [0 0.447 0.741; 0.85 0.33 0.10; 0.93 0.69 0.13; ...
0.49 0.18 0.56; 0.47 0.67 0.19; 0.30 0.75 0.93];
colororder(ax, colors);
% All series in this axes now cycle through these colors
Theme struct for uifigure apps (R2025a)
function theme = createTheme(mode)
arguments
mode string {mustBeMember(mode, ["light", "dark"])} = "light"
end
theme.primary = [0 0.447 0.741]; % MATLAB blue
theme.onPrimary = [1 1 1];
theme.error = [0.83 0.18 0.18];
theme.success = [0.22 0.56 0.24];
theme.border = [0.88 0.88 0.88];
theme.plotColors = [0 0.447 0.741; 0.85 0.33 0.10; 0.93 0.69 0.13; ...
0.49 0.18 0.56; 0.47 0.67 0.19; 0.30 0.75 0.93; 0.64 0.08 0.18];
if mode == "dark"
theme.primary = fliplightness(theme.primary);
theme.plotColors = fliplightness(theme.plotColors);
end
end
Wiring to a figure:
fig.ThemeChangedFcn = @(src, ~) applyTheme(src, ax);
function applyTheme(fig, ax)
theme = createTheme(fig.Theme.BaseColorStyle);
colororder(ax, theme.plotColors);
end
Light/Dark Strategy
- Don't set figure background, standard component bg/text — Theme API handles it automatically
- Do set brand colors (primary buttons, accent labels, status indicators) via theme struct
- Use
ThemeChangedFcn to swap brand colors when OS/user toggles dark mode
- Use
fliplightness() to auto-derive dark brand colors from light definitions
- Leave
ColorMode = "auto" on components wherever possible
What breaks automatic theming — setting any color explicitly switches ColorMode to "manual":
btn.BackgroundColor = [0.2 0.4 0.8]; % Now manual — won't adapt to theme
btn.BackgroundColorMode = "auto"; % Restore theme control
Color Types in MATLAB
| Type |
API |
When to use |
| Component colors |
btn.BackgroundColor, lbl.FontColor |
UI element branding |
| Series colors |
colororder(colors) or colororder("palette") |
Multiple lines/bars/scatter in one axes |
| Continuous colors |
colormap(map) |
Heatmaps, surfaces, contours, images |
| Cell/row styling |
uistyle + addStyle |
Conditional formatting in tables/trees |
colororder = categorical (series A, B, C get distinct colors)
colormap = continuous (scalar values mapped to gradient)
- Don't confuse them — they serve different purposes
Importing External Color Schemes
Workflow
- Pick a scheme from Material Design, Adobe Color, Tailwind, etc.
- Extract 5-7 key colors: primary, secondary, error, success, warning, border + 5-7 chart series colors
- Convert hex to [R G B] normalized 0-1:
rgb = sscanf(hex(2:end), '%2x', 3)' / 255
- Map to theme struct fields:
theme.primary, theme.secondary, etc.
- Test both modes: verify
fliplightness() produces acceptable dark variants; override manually if not
- Apply via
applyBrandColors: the function reads the struct and sets tagged components
See references/external-schemes.md for complete Material Design, Adobe Color, and Tailwind import examples.
Implementation Checklist
Styling
Troubleshooting
| Problem |
Cause |
Fix |
| Component doesn't change with dark mode |
Color set explicitly |
Remove explicit color or set BackgroundColorMode = "auto" |
fliplightness not found |
MATLAB < R2025a |
Upgrade or define manual dark colors |
| Chart colors don't update on theme switch |
colororder not re-applied |
Add colororder(ax, theme.plotColors) to theme handler |
findall returns empty |
Tag not set or misspelled |
Verify Tag property matches exactly |
References
| Topic |
File |
Description |
| Theme API |
references/theme-api.md |
R2025a lock/detect/react, auto vs manual theming |
| Component colors |
references/component-colors.md |
Color properties table + uistyle for tables/trees |
| External schemes |
references/external-schemes.md |
Material Design, Adobe Color, Tailwind import workflows |
Copyright 2026 The MathWorks, Inc.
1---2name: matlab-theming3description: Style MATLAB charts and figures. colororder palettes for chart series colors, colormap selection, brand color organization, and the R2025a Theme API for uifigure apps (dark mode with fliplightness, ThemeChangedFcn, uistyle, component colors). Use when customizing chart colors, applying a color palette, organizing brand colors, implementing dark mode, or importing an external color scheme. Triggers: theme, dark mode, brand colors, colororder, colormap, palette, fliplightness, color scheme, styling, chart colors.4license: MathWorks BSD-3-Clause5---67# MATLAB Theming89Style MATLAB charts with color palettes and — for uifigure apps — apply the R2025a Theme API for brand colors, dark mode, and component styling.1011## When to Use This Skill1213Use this skill when:14- Setting `colororder` for chart series colors (any context)15- Choosing or importing a color palette for plots16- Organizing brand colors into a reusable struct17- Applying a custom `colormap` for continuous data18- Implementing dark mode with `fliplightness()` (uifigure)19- Wiring `ThemeChangedFcn` to react to OS/user theme changes (uifigure)20- Using `uistyle` for conditional formatting in tables/trees (uifigure)21- Importing an external color scheme (Material Design, Adobe Color, Tailwind)2223## When NOT to Use This Skill2425- Choosing chart types or building charts from scratch (use `matlab-build-chart`)26- Building a full app layout (use `matlab-build-app` — it invokes this skill for theming sub-steps)27- Setting colors on individual plot elements as a one-off (just use the `Color` property directly)28- Non-MATLAB styling (CSS, HTML themes for web apps)2930## Critical Rules3132### Universal (all contexts)3334- MUST centralize brand/palette colors in a struct — never scatter RGB values35- ALWAYS use `colororder()` for categorical chart series colors36- ALWAYS use `colormap()` for continuous scalar-mapped colors37- NEVER confuse `colororder` (categorical series) with `colormap` (continuous gradient)3839### Additional rules for uifigure apps (R2025a Theme API)4041- MUST use R2025a Theme API — do NOT manually set figure background or standard component colors42- MUST use `fliplightness()` to derive dark variants unless explicitly designing custom dark colors43- NEVER set a component's color explicitly unless branding requires it — breaks theme adaptation44- ALWAYS use the semantic token vocabulary defined below for cross-path consistency4546## Semantic Token Vocabulary4748Both MATLAB and web implementations map to these common tokens. When importing an external color scheme, map its colors to these tokens once.4950| Token | Purpose | MATLAB (struct field) | Web (CSS variable) |51|---|---|---|---|52| `primary` | Brand/action color (buttons, links, active states) | `theme.primary` | `--accent` |53| `onPrimary` | Text/icon on primary background | `theme.onPrimary` | `--accent-text` |54| `secondary` | Secondary brand color (less prominent actions) | `theme.secondary` | `--secondary` |55| `error` | Error/destructive state | `theme.error` | `--error` |56| `success` | Success/confirmation state | `theme.success` | `--success` |57| `warning` | Warning/caution state | `theme.warning` | `--warning` |58| `border` | Custom borders and dividers | `theme.border` | `--border` |59| `plotColors` | Chart series colors (Nx3 RGB matrix) | `theme.plotColors` | N/A (use chart library config) |6061**MATLAB note:** Surface/text colors (`--bg-primary`, `--text-primary` in CSS) are NOT in the MATLAB theme struct. The R2025a Theme API handles those automatically. Only define brand/custom colors.6263## Quick Start6465### Color palettes for any figure6667```matlab68colors = [0 0.447 0.741; 0.85 0.33 0.10; 0.93 0.69 0.13; ...69 0.49 0.18 0.56; 0.47 0.67 0.19; 0.30 0.75 0.93];70colororder(ax, colors);71% All series in this axes now cycle through these colors72```7374### Theme struct for uifigure apps (R2025a)7576```matlab77function theme = createTheme(mode)78 arguments79 mode string {mustBeMember(mode, ["light", "dark"])} = "light"80 end81 theme.primary = [0 0.447 0.741]; % MATLAB blue82 theme.onPrimary = [1 1 1];83 theme.error = [0.83 0.18 0.18];84 theme.success = [0.22 0.56 0.24];85 theme.border = [0.88 0.88 0.88];86 theme.plotColors = [0 0.447 0.741; 0.85 0.33 0.10; 0.93 0.69 0.13; ...87 0.49 0.18 0.56; 0.47 0.67 0.19; 0.30 0.75 0.93; 0.64 0.08 0.18];88 if mode == "dark"89 theme.primary = fliplightness(theme.primary);90 theme.plotColors = fliplightness(theme.plotColors);91 end92end93```9495Wiring to a figure:9697```matlab98fig.ThemeChangedFcn = @(src, ~) applyTheme(src, ax);99100function applyTheme(fig, ax)101 theme = createTheme(fig.Theme.BaseColorStyle);102 colororder(ax, theme.plotColors);103end104```105106## Light/Dark Strategy1071081. **Don't set** figure background, standard component bg/text — Theme API handles it automatically1092. **Do set** brand colors (primary buttons, accent labels, status indicators) via theme struct1103. Use `ThemeChangedFcn` to swap brand colors when OS/user toggles dark mode1114. Use `fliplightness()` to auto-derive dark brand colors from light definitions1125. Leave `ColorMode = "auto"` on components wherever possible113114What breaks automatic theming — setting any color explicitly switches `ColorMode` to `"manual"`:115116```matlab117btn.BackgroundColor = [0.2 0.4 0.8]; % Now manual — won't adapt to theme118btn.BackgroundColorMode = "auto"; % Restore theme control119```120121## Color Types in MATLAB122123| Type | API | When to use |124|---|---|---|125| **Component colors** | `btn.BackgroundColor`, `lbl.FontColor` | UI element branding |126| **Series colors** | `colororder(colors)` or `colororder("palette")` | Multiple lines/bars/scatter in one axes |127| **Continuous colors** | `colormap(map)` | Heatmaps, surfaces, contours, images |128| **Cell/row styling** | `uistyle` + `addStyle` | Conditional formatting in tables/trees |129130- `colororder` = categorical (series A, B, C get distinct colors)131- `colormap` = continuous (scalar values mapped to gradient)132- Don't confuse them — they serve different purposes133134## Importing External Color Schemes135136### Workflow1371381. **Pick a scheme** from Material Design, Adobe Color, Tailwind, etc.1392. **Extract 5-7 key colors**: primary, secondary, error, success, warning, border + 5-7 chart series colors1403. **Convert hex to [R G B]** normalized 0-1: `rgb = sscanf(hex(2:end), '%2x', 3)' / 255`1414. **Map to theme struct fields**: `theme.primary`, `theme.secondary`, etc.1425. **Test both modes**: verify `fliplightness()` produces acceptable dark variants; override manually if not1436. **Apply via `applyBrandColors`**: the function reads the struct and sets tagged components144145See `references/external-schemes.md` for complete Material Design, Adobe Color, and Tailwind import examples.146147## Implementation Checklist148149### Styling150- [ ] Brand colors centralized in `createTheme` struct151- [ ] `fliplightness()` used for dark variants152- [ ] Branded components tagged for `findall` lookup153- [ ] `ThemeChangedFcn` wired to re-apply brand colors154- [ ] `colororder` set from `theme.plotColors`155- [ ] No explicit colors on auto-themed components156157## Troubleshooting158159| Problem | Cause | Fix |160|---|---|---|161| Component doesn't change with dark mode | Color set explicitly | Remove explicit color or set `BackgroundColorMode = "auto"` |162| `fliplightness` not found | MATLAB < R2025a | Upgrade or define manual dark colors |163| Chart colors don't update on theme switch | `colororder` not re-applied | Add `colororder(ax, theme.plotColors)` to theme handler |164| `findall` returns empty | Tag not set or misspelled | Verify `Tag` property matches exactly |165166## References167168| Topic | File | Description |169|-------|------|-------------|170| Theme API | `references/theme-api.md` | R2025a lock/detect/react, auto vs manual theming |171| Component colors | `references/component-colors.md` | Color properties table + uistyle for tables/trees |172| External schemes | `references/external-schemes.md` | Material Design, Adobe Color, Tailwind import workflows |173174----175176Copyright 2026 The MathWorks, Inc.177178----