From reports
Designs, audits, and enforces Power BI report themes using the pbir CLI. Helps standardize formatting and clear visual overrides.
How this skill is triggered — by the user, by Claude, or both
Slash command
/reports:modifying-theme-jsonThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for theme design and compliance decisions. Use the `pbir-cli` skill for command details.
examples/DataGoblins2021.jsonexamples/Fluent2-CY26SU03.jsonexamples/visualTypes/actionButton.mdexamples/visualTypes/advancedSlicerVisual.mdexamples/visualTypes/aiNarratives.mdexamples/visualTypes/areaChart.mdexamples/visualTypes/azureMap.mdexamples/visualTypes/barChart.mdexamples/visualTypes/bookmarkNavigator.mdexamples/visualTypes/card.mdexamples/visualTypes/cardVisual.mdexamples/visualTypes/clusteredBarChart.mdexamples/visualTypes/clusteredColumnChart.mdexamples/visualTypes/columnChart.mdexamples/visualTypes/decompositionTreeVisual.mdexamples/visualTypes/donutChart.mdexamples/visualTypes/filledMap.mdexamples/visualTypes/filter.mdexamples/visualTypes/funnel.mdexamples/visualTypes/gauge.mdUse this skill for theme design and compliance decisions. Use the pbir-cli skill for command details.
Use pbir for every report and theme mutation. Never edit theme.json, visual.json, serialized .Theme fragments, or other report JSON directly. Never fall back to jq, shell replacement, or a JSON-editing skill. If pbir lacks the required operation, stop and report the missing capability.
Read JSON only through pbir cat, pbir get, or read-only examples. Prefer structured CLI inspection commands because they explain the formatting cascade and usage.
A theme centralizes formatting that would otherwise drift across visuals. It should own repeated choices such as:
Visual-level overrides should remain only for content-specific exceptions or conditional formatting. Theme-first reports are easier to rebrand, diff, and maintain.
Power BI defaults
-> theme wildcard defaults
-> theme visual-type defaults
-> visual instance overrides
The last layer wins. Diagnose unexpected rendering with pbir visuals format, which reports the effective value and source; do not inspect or patch visual.json.
pbir theme colors "Report.Report"
pbir theme fonts "Report.Report"
pbir color list "Report.Report"
pbir fonts list "Report.Report"
pbir visuals format "Report.Report/Page.Page/Visual.Visual"
pbir bpa run "Report.Report"
Look for hard-coded colors, repeated visual-level font or container overrides, inconsistent visual types, weak contrast, excessive palette size, and sentiment colors that change meaning between visuals.
pbirStart from a valid template or the report's existing theme; do not author an empty theme.
# Apply a known base when requested
pbir theme list-templates
pbir theme apply-template "Report.Report" sqlbi
# Set palette and semantic colors
pbir theme set-colors "Report.Report" \
--data-colors '["#1971C2","#F08C00","#2F9E44","#7048E8"]' \
--good "#2E7D32" --neutral "#6B7280" --bad "#C62828" \
--background "#FFFFFF" --foreground "#252525"
# Set typography by semantic level
pbir theme set-fonts "Report.Report" title --font-face "Segoe UI Semibold" --font-size 14
pbir theme set-fonts "Report.Report" label --font-face "Segoe UI" --font-size 10
pbir theme set-fonts "Report.Report" callout --font-face "Segoe UI Semibold" --font-size 32
# Set repeated formatting at theme level
pbir theme set-formatting "Report.Report" "*.*.dropShadow.show" --value false
pbir theme set-formatting "Report.Report" "*.*.border.show" --value false
pbir theme set-formatting "Report.Report" "card.*.title.fontSize" --value 14
Run pbir schema describe <visualType> <object> before authoring unfamiliar formatting properties.
pbir theme push-visual "Report.Report/Page.Page/BestCard.Visual" --dry-run
pbir theme push-visual "Report.Report/Page.Page/BestCard.Visual"
Use this when a well-designed instance should become the default for its visual type. Inspect the dry run first so content-specific formatting is not promoted accidentally.
Clearing overrides is destructive and must be confirmed with the user. Preserve conditional formatting unless the user explicitly wants it removed.
pbir visuals clear-formatting "Report.Report/**/*.Visual" --keep-cf --dry-run -f
pbir visuals clear-formatting "Report.Report/**/*.Visual" --keep-cf -f
pbir theme colors "Report.Report" --normalize
pbir theme colors "Report.Report" --normalize --apply
For selective cleanup, use the flags documented by pbir visuals clear-formatting --help rather than broad file edits.
pbir cp "Source.Report/theme" "Target.Report/theme" -f
pbir theme validate "Target.Report"
After a theme swap, clear stale visual overrides, normalize surviving color literals, and inspect foreground/background polarity so text does not become invisible.
Use one confidence pass after a coherent batch:
pbir theme validate "Report.Report"
pbir validate "Report.Report" --all
pbir desktop refresh "Report.Report"
pbir desktop screenshot "Report.Report" --all --output-dir screenshots
Desktop refresh does not reload theme resources. Close and reopen the report before judging theme changes, then capture screenshots. If Desktop is unavailable, ask before publishing to a sandbox workspace for rendered verification.
pbir-cli -> references/modifying-theme.md: colors, fonts, formatting, normalization, validationpbir-cli -> references/apply-theme.md: templates, copying, clearing overridespbir-cli -> references/format-visuals.md: cascade inspection and property discoverypbi-report-design: layout, restrained color use, hierarchy, and accessibilitynpx claudepluginhub data-goblin/power-bi-agentic-development --plugin reportsCanonical reference for Power BI report design covering design identity, visual hierarchy, layout, color discipline, chart selection, KPI/card design, tables, matrices, and accessibility. Loads when making design, layout, color, chart, or accessibility decisions.
Provides format reference for Power BI Enhanced Report (PBIR) JSON schemas and patterns. Useful for reading, writing, or modifying PBIR report metadata.
Creates and modifies Power BI report files in PBIR/PBIP format using powerbi-report-author and powerbi-desktop CLIs. Use for implementing report specs, adding visuals, and validating PBIR.