thedivergentai/gd-agentic-skills

godot-ui-theming

Expert blueprint for UI themes using Theme resources, StyleBoxes, custom fonts, and theme overrides for consistent visual styling.

First seen Feb 10, 2026

Installation

$ npx skills add thedivergentai/gd-agentic-skills --skill godot-ui-theming

Summary

  • Expert blueprint for UI themes using Theme resources, StyleBoxes, custom fonts, and theme overrides for consistent visual styling.
  • Covers StyleBoxFlat/Texture, theme inheritance, dynamic theme switching, and font variations.
  • Use when implementing consistent UI styling OR supporting multiple themes.
  • Keywords Theme, StyleBox, StyleBoxFlat, add_theme_override, font, theme inheritance, dark mode.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thedivergentai/gd-agentic-skills · top by installs.

npx skills add thedivergentai/gd-agentic-skills

Browse all from thedivergentai/gd-agentic-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 678
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 14,895 B
  • docs SUMMARY.md 3,980 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 439 installs

SKILL.md

UI Theming

Theme resources, StyleBox styling, font management, and override system define consistent UI visual identity.

Available Scripts

[globalthememanager.gd](scripts/globalthememanager.gd)

Expert theme manager with dynamic switching, theme variants, and fallback handling.

[uiscalemanager.gd](scripts/uiscalemanager.gd)

Runtime theme switching and DPI/Resolution scale management.

[themeswapper.gd](scripts/themeswapper.gd)

Dynamic Dark/Light mode implementation using cascading theme root propagation.

[dangerbuttonassignment.gd](scripts/dangerbuttonassignment.gd)

Expert use of themetypevariation for semantic UI styling without scene duplication.

[dynamicstyleboxcolor.gd](scripts/dynamicstyleboxcolor.gd)

Safe runtime StyleBox modification. Demonstrates the critical duplicate() pattern for isolated overrides.

[proceduralthemesafe.gd](scripts/proceduralthemesafe.gd)

Reliable theming for generated UI elements using NOTIFICATIONTHEMECHANGED.

[customchartdrawing.gd](scripts/customchartdrawing.gd)

Pattern for reading active Theme properties (colors, fonts) in custom _draw() logic.

[themeisolation.gd](scripts/themeisolation.gd)

Ensuring HUD consistency by isolating nodes from parent themes and referencing Project Defaults.

[pulsatinguitheme.gd](scripts/pulsatinguitheme.gd)

Animating UI styles via Tweens. Targets StyleBox properties directly after duplication.

[crispuiscaler.gd](scripts/crispuiscaler.gd)

High-quality resolution-independent scaling using contentscalefactor to maintain font crispness.

[memorysafecustomdrawing.gd](scripts/memorysafecustomdrawing.gd)

Fixing the "disappearing stylebox" bug by caching resources at the class level for the RenderingServer.

[rtlthememirroring.gd](scripts/rtlthememirroring.gd)

Bi-directional (RTL/LTR) UI support. Swaps theme variants dynamically based on layout direction.

[focusprompticonswapper.gd](scripts/focusprompticonswapper.gd)

Controller/keyboard prompt icon bank swap + focus highlight panel. MANDATORY for accessibility prompt chrome.

NEVER Do in UI Theming

  • NEVER create StyleBox in _ready() for many nodes — Instantiating StyleBoxFlat.new() 100 times creates 100 unique objects. Use a Theme resource for shared heritage.
  • NEVER forget theme inheritance — Parent themes are ignored if a child has its own theme. Apply themes at the root and use themetypevariation for specific overrides.
  • NEVER hardcode colors in StyleBox — Use theme.get_color() to maintain a single source of truth for your palette.
  • NEVER use addthemeoverride for global styles — This is brittle. Define styles in a Theme resource for automatic propagation across the project.
  • NEVER modify theme resources during draw() OR process() — Frequent layout recalculations will severely degrade performance.
  • NEVER assign StyleBoxEmpty to focus styles without a fallback — This invisibly breaks controller/keyboard navigation [1]. Always provide a visible alternative (e.g. scale change).
  • NEVER use standard set() for theme properties — Calling node.set("fontcolor", red) fails. You MUST use the dedicated addthemecoloroverride() API [3].
  • **NEVER use expandmargin* to increase clickable area** — It only expands the VISUAL bounds. Use contentmargin* on the StyleBox or adjust the Control's size to ensure input works [5].
  • NEVER define StyleBoxes as local variables inside _draw() — They will be garbage collected before the RenderingServer can finish drawing them [7]. Store at class level.
  • NEVER duplicate scenes/themes just to change one color — Use themetypevariation to create lightweight derived styles (e.g. "DangerButton") within the same Theme [8].
  • NEVER skip cornerradiusall on StyleBoxFlat — shorthand for uniform rounding; prefer it over four separate radius fields when all corners match.
  • NEVER confuse Theme items with Control overridesaddthemeoverride beats Theme resource items on that node only; a child Control with its own theme still blocks parent cascade. Clear with removethemeoverride when swapping roots — do not leave stale overrides fighting the new Theme.

Decision Tree — Theme Ownership

Goal Choose Notes / script
App-wide look Project Settings → GUI → Theme Author in Theme editor — no per-node StyleBox tutorials here
One Control differs addtheme*_override on that node Local only; never for global styles
Button/panel subtype themetypevariation See [dangerbuttonassignment.gd](scripts/dangerbuttonassignment.gd)
Runtime color tweak without mutating shared Theme stylebox.duplicate() then override See [dynamicstyleboxcolor.gd](scripts/dynamicstyleboxcolor.gd)

Fonts & StyleBoxes: edit via Theme editor / Project Theme. Runtime helpers: [globalthememanager.gd](scripts/globalthememanager.gd), [themeswapper.gd](scripts/themeswapper.gd), [proceduralthemesafe.gd](scripts/proceduralthemesafe.gd).

Expert Theming Patterns

1. Shared-Color-Palette (The Static Pattern)

Maintain a single source of truth for UI colors accessible to both the Theme Editor and GDScript.

  • Theme Setup: In your .theme file, create a custom type called Palette and add Color items (e.g., primary, danger, accent).
  • Static Access: Use a SharedPalette class with static func getprimary() -> Color that pulls from ThemeDB.getproject_theme(). This ensures UI scripts and the visual theme never drift.

2. Theme-Type-Variations

Avoid duplicating button scenes or styleboxes for variants like "Danger" or "Ghost" styles.

  • Implementation: In the Theme Editor, create a new Type Variation. Set its Base Type to Button.
  • Inheritance: The variation inherits all properties from the base type. You only override what's different (e.g., set font_color to red for DangerButton).
  • Usage: Assign via code node.themetypevariation = &"DangerButton" or via the Inspector dropdown.

MANDATORY: Read [dangerbuttonassignment.gd](scripts/dangerbuttonassignment.gd) — do not fork Button scenes for color variants.

3. Runtime StyleBox Color (duplicate first)

When a single Control needs a runtime tint, duplicate the StyleBox before mutating — shared Theme StyleBoxes must stay immutable.

MANDATORY: Read [dynamicstyleboxcolor.gd](scripts/dynamicstyleboxcolor.gd) — never mutate a Theme StyleBox in place.

4. Runtime-Theme-Swapping (Accessibility)

Efficiently switch the visual style of the entire game for Light, Dark, or High-Contrast modes.

  • Cascading Updates: Assign a new Theme resource to the root Control node. Godot propagates this to every descendant.
  • Accessibility: Use NOTIFICATIONTHEMECHANGED to update elements that don't support automatic theming (like custom _draw() logic or RichText effects).
  • High-Contrast: Ensure High-Contrast themes use pure black/white and thicker focus outlines for low-vision accessibility.

MANDATORY: Read [themeswapper.gd](scripts/themeswapper.gd) — swap at the theme root; do not walk every Control assigning themes.

5. RTL / LTR Theme Mirroring

Bi-directional layouts need mirrored StyleBox / type-variation banks when direction flips — not hand-flipped anchors alone.

MANDATORY: Read [rtlthememirroring.gd](scripts/rtlthememirroring.gd) — swap theme variants from layout direction; do not hardcode LTR margins.

6. Themed-Asset-Loading (Seasonal Variants)

Godot Themes support more than just colors and fonts—they can store textures.

  • Setup: Define UI icons as Icon items within separate Theme resources (e.g., halloween.theme, christmas.theme).
  • Swapping: Swapping the root theme resource instantly cascades the new icon textures across all buttons and panels without manual logic.

7. UI-Focus-Manager (Dynamic Controller Icons)

Standard focus styles are static. For accessibility UX, swap prompt icons by device and tween a highlight panel to getglobalrect().

MANDATORY: Read [focusprompticonswapper.gd](scripts/focusprompticonswapper.gd) — do not paste joypad icon paths into Control scripts.

Pairs with Runtime-Theme-Swapping (Accessibility) above and [themeswapper.gd](scripts/themeswapper.gd) for High-Contrast roots.

8. Asset-Dependency-Audit (Draw-Call Reduction)

Ensuring UI textures are optimized for rendering performance.

  • Atlas Packing: Use AtlasTexture to crop small UI elements from a singular large sheet. This reduces VRAM state changes and minimizes draw calls [14].
  • Compression Policy:

- 2D/Pixel Art: Use Lossless compression to avoid blurry artifacts [15]. - UI Backgrounds: Use Lossy or Basis Universal for large illustrations to save disk space without decreasing VRAM usage [15].

  • Audit: Use ResourceLoader.getdependencies(scenepath) to ensure no uncompressed raw assets (e.g. .png) are leaking into the final export [19].

Deep recipes (on demand)

LLM-ignorance rule: if a general agent would not know it before reading, it lives here or in scripts/ — never delete, only move.

Topic Reference
StyleBox / font setup [theme-authoring-recipes.md](references/theme-authoring-recipes.md)

Reference

Progressive disclosure: open Official Documentation links only when researching a specific API;
load Related Skills when routing work to a peer domain — do not preload the whole lattice.

Official Documentation

  • GUI skinning — Theme resources, StyleBoxes, and cascading skin ownership.
  • Using the theme editor — Authoring Theme assets without hand-editing every Control override.
  • Theme type variations — Variants for button/panel subtypes without duplicating whole themes.
  • Using fonts — DynamicFont / font size theming for UI readability.
  • Custom GUI controls — When themed _draw() needs theme item lookups.
  • Size and anchors — Layout that survives theme scale and DPI changes.
  • Theme — Runtime get/set for colors, constants, icons, StyleBoxes.
  • ThemeDB — Project default theme and fallback resolution.
  • Control — Theme overrides and NOTIFICATIONTHEME_CHANGED.
  • StyleBox — Panel/button chrome used by most Theme skins.
  • AtlasTexture — Pack UI icons to cut draw-call churn.
  • Input — Custom cursors and joypad-driven prompt icon swaps.

Related Skills

Prerequisites

Complements

Downstream / consumers

Master

  • godot-master — Library router and mirrored module entry for UI theming.