Loading...
Loading...
Define corporate color palettes based on Catppuccin warm tones with light/dark mode conventions. Trigger: When defining brand colors, creating theme systems, or implementing light/dark modes.
npx skill4agent add 333-333-333/agents corporate-colors| Role | Catppuccin Name | Light (Latte) | Dark (Mocha) | Usage |
|---|---|---|---|---|
| Primary | Maroon | | | CTAs, buttons, links, focus rings |
| Secondary | Flamingo | | | Badges, tags, supporting elements |
| Emphasis | Peach | | | Hover states, highlights, accents |
| Warm info | Rosewater | | | Informational, subtle accents |
| Color | Reason |
|---|---|
| Blue, Sapphire | Too cold, corporate feel |
| Lavender, Mauve | Purple is cold, doesn't match pet care warmth |
| Teal | Cold, clinical |
| Green | Reserved for semantic "success" only |
| Category | Purpose | Usage |
|---|---|---|
| Primary | Main brand actions (CTA, links, focus states) | Buttons, active states, primary actions |
| Secondary | Supporting elements, less prominent actions | Badges, tags, secondary buttons |
| Accent | Emphasis, highlights, notifications | Alerts, highlights, important info |
| Surface | Backgrounds, containers | Cards, modals, panels |
| Text | Typography hierarchy | Body text, headings, labels |
| Border | Dividers, outlines | Separators, input borders |
See assets/color-tokens.ts
See assets/styles.css
See assets/tailwind-colors.js
See assets/theme-tokens.ts
See assets/example-component.tsx
mobile/lib/app/theme/app_colors.dart// Access via Forui theme
final colors = context.theme.colors;
colors.primary; // Maroon
colors.secondary; // Flamingo| Element | Light Mode | Dark Mode |
|---|---|---|
| Text on backgrounds | Dark text on light surfaces | Light text on dark surfaces |
| Primary actions | High contrast (Maroon | Softer contrast (Maroon |
| Borders | Subtle, darker than background | Subtle, lighter than background |
| Hover states | Shift to Peach (warmer, energetic) | Shift to Peach (warmer, energetic) |
// DO: Use semantic names
<Button color="primary">Submit</Button>
<Alert variant="error">Failed</Alert>
// DON'T: Use specific color names
<Button color="peach">Submit</Button>
<Alert variant="red">Failed</Alert>// Flutter — reads system preference automatically
final brightness = MediaQuery.platformBrightnessOf(context);
final scheme = brightness == Brightness.dark
? AppColors.dark
: AppColors.light;# Install Catppuccin palette packages (optional)
npm install @catppuccin/palette
# Test contrast ratios
npx polypane # or use online tools like contrast-ratio.commobile/lib/app/theme/app_colors.dart