powerbi-report-theming

powerbi-report-theming is a skill for Claude Code, Codex from santoshkanthety/powerbi-agent. It costs 93 tokens per session (1,775 once invoked), scanned A, original, MIT.

A guide for controlling the visual style of Power BI reports, including colors, fonts, text styles, icons, backgrounds, and rules that change formatting based on data.

In plain words
What is it for?
Use it to set color palettes and fonts, apply reusable theme templates, change visual colors, and configure conditional formatting.
Why use it?
It helps keep reports consistent with a brand or apply the same design changes across many visuals without opening Power BI Desktop.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to set color palettes and fonts, apply reusable theme templates, change visual colors, and configure conditional formatting.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/santoshkanthety/powerbi-agent/powerbi-report-theming
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add santoshkanthety/powerbi-agent --skill powerbi-report-theming
Clone the repo
git clone --depth 1 https://github.com/santoshkanthety/powerbi-agent

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for powerbi-report-theming

README.md
[![agentmods](https://agentmods.dev/badge/skills/santoshkanthety/powerbi-agent/powerbi-report-theming/github.svg)](https://agentmods.dev/skills/santoshkanthety/powerbi-agent/powerbi-report-theming)
Your own site
<a href="https://agentmods.dev/skills/santoshkanthety/powerbi-agent/powerbi-report-theming"><img src="https://agentmods.dev/badge/skills/santoshkanthety/powerbi-agent/powerbi-report-theming/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for powerbi-report-theming

Your own site · 80×15
<a href="https://agentmods.dev/skills/santoshkanthety/powerbi-agent/powerbi-report-theming"><img src="https://agentmods.dev/badge/skills/santoshkanthety/powerbi-agent/powerbi-report-theming.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,775 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00093 $0.01775
Opus 5 $0.00046 $0.00888
Sonnet 5 $0.00019 $0.00355
Haiku 4.5 $0.00009 $0.00178

Measured 12d ago against content hash c0ff5adc760a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

powerbi-report-theming scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/powerbi-report-theming/SKILL.md · 248 lines

How it starts

The opening of the file, as written. The whole thing — 248 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Report Theming with pbir.tools

Power BI themes control colors, fonts, and default visual formatting. pbir.tools exposes full programmatic control over all theme elements — enabling brand consistency across reports, bulk style application, and reusable theme templates — without opening Power BI Desktop.

Installation

uv tool install pbir-cli

Exploring the Current Theme

# Display current color palette
pbir theme colors report.Report

# List all text class configurations (title, label, callout, etc.)
pbir theme text-classes report.Report

# List available fonts
pbir theme fonts report.Report

# List available built-in theme templates
pbir theme list-templates

# Show full theme JSON
pbir cat report.Report/definition/report/theme

Color Management

# Assign brand colors to palette positions
pbir theme set-colors report.Report \
  --primary "#1a3a8f" \
  --secondary "#e8612c" \
  --background "#f5f7fa" \
  --foreground "#1c1c1c"

# Replace a specific color across all visuals
pbir theme colors report.Report \
  --replace "#FF0000" \
  --with "#CC3333"

# Normalize all hex colors to lowercase (consistency)
pbir theme colors report.Report --normalize

# Apply Tron Ares color palette
pbir theme set-colors report.Report \
  --primary "#00f0ff" \
  --secondary "#ff4e00" \
  --background "#04060f" \
  --foreground "#c8e8f0" \
  --accent1 "#007a88" \
  --accent2 "#7a2500"

Typography Configuration

# Set default font family for the entire report
pbir theme set-text-classes report.Report \
  --font "Segoe UI" \
  --fallback "sans-serif"

# Configure individual text classes
pbir theme set-text-classes report.Report \
  --class "title" \
  --font "Segoe UI Semibold" \
  --size 16 \
  --color "#1c1c1c" \
  --bold true

pbir theme set-text-classes report.Report \
  --class "calloutValue" \
  --font "Segoe UI Light" \
  --size 28 \
  --color "#1a3a8f"

pbir theme set-text-classes report.Report \
  --class "label" \
  --font "Segoe UI" \
  --size 10 \
  --color "#666666"

# Available text classes:
# title, subTitle, label, calloutValue, header, smallLabel, semiboldLabel

Read the full file on GitHub · 248 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 248 lines · 0 tokens per session scan A c0ff5adc760a

Subscribe to this mod's changes

powerbi-report-theming is a skill published in the GitHub repository santoshkanthety/powerbi-agent (2 stars, last pushed 13d ago), licensed MIT. It adds 93 tokens to every session and 1,775 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

dashboard_composer

Skill "dashboard_composer" from G-Schumacher44/strata-oss, covering skill: dashboardcomposer, trigger, inputs, allowed tools and forbidden.

G-Schumacher44/strata-oss · 0 tokens

baoyu-diagram

Create professional, dark-themed SVG diagrams of any type — architecture diagrams, flowcharts, sequence diagrams, structural diagrams, mind maps, timelines, illustrative/conceptual diagrams, and more. Use this skill whenever the user asks for any kind of technical or conceptual diagram, visualization of a system…

JimLiu/baoyu-skills · 146 tokens

sxo

Search Experience Optimization (SXO) — the bridge between SEO and UX/CRO. Audits the full journey from the SERP click to the on-page goal: SERP click-through factors (title/meta/rich results that win the click), then post-click experience signals that keep users and drive conversions — above-the-fold relevance and…

nowork-studio/notfair-plugin · 235 tokens

create-chatgpt-mockup

Render pixel-accurate ChatGPT mobile (iOS) screen mockups in light mode from a thread JSON. Supports user text bubbles, user image attachments, assistant markdown prose, citation chips, the OpenAI spiral logo, the Apps-SDK GPT chip in the composer, and three header styles (model-tag, plain title, "Get Plus"). Fixed…

gooseworks-ai/goose-skills · 90 tokens

journey-mapping

Build customer journey maps and service blueprints that visualize the end-to-end user experience including touchpoints, emotions, friction, and underlying systems. Use this skill whenever the user wants to map a customer journey, build a service blueprint, identify friction across an experience, align teams on the…

rampstackco/claude-skills · 131 tokens

shiny-bslib

Build modern Shiny dashboards and applications using bslib (Bootstrap 5). Use when creating new Shiny apps, modernizing legacy apps (fluidPage, fluidRow/column, tabsetPanel, wellPanel, shinythemes), or working with bslib page layouts, grid systems, cards, value boxes, navigation, sidebars, filling layouts, theming…

posit-dev/skills · 107 tokens