Skip to main content
Home/Recipes/Rebrand an existing application
AI Pipelines

23.Rebrand an existing application

DeveloperDesignerAgency

Overview

Extract the new brand's tokens. Feed the JSON and your existing codebase to Claude Code. The agent applies the new visual language (colors, type, spacing, radii) across the whole product.

When a brand changes its visual identity, every hardcoded color value, font reference, spacing constant, and border radius in the codebase needs to be updated. Extract the new brand's tokens using Dembrandt, then feed the extraction JSON alongside the existing codebase into Claude Code. The agent audits every hardcoded value, matches it against the new token set, and produces a complete rebrand, replacing wrong values with correct ones throughout the codebase. This replaces a week of manual find-and-replace with a single agent session.

Extract new brand tokens

Terminal
dembrandt newbrand.com --save-output
Claude Code prompt
# With extraction JSON and codebase in context:
"Apply these extracted design tokens to the attached codebase.
Replace hardcoded color values, type sizes, spacing, and border
radii with the new brand values."
Output

Complete visual rebrand: hardcoded values replaced with new brand tokens.

Browse all

All recipes →

43 workflows