Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Corporate Colors

ASecurity

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.

207 stars
0 votes
0 copies
2 views
Added 9/4/2026
developmenttypescriptrustgobashreactawsgit

Works with

cli

Security Analysis

A96/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/4/2026

Install to Claude Code

$npx -y skills add NeverSight/skills_feed --skill corporate-colors --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Corporate Colors?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Corporate Colors
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/neversight-corporate-colors/badge)](https://www.skillsdirectory.com/skills/neversight-corporate-colors)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: corporate-colors
description: >
  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.
license: Apache-2.0
metadata:
  author: 333-333-333
  version: "2.0"
  type: generic
  scope: [root]
  auto_invoke:
    - "Defining brand color systems"
    - "Creating design tokens or theme systems"
    - "Implementing light/dark mode switching"
    - "Establishing corporate color conventions"
---

## When to Use

- Defining brand color systems for applications
- Implementing light/dark theme switching
- Creating design tokens or style systems
- Establishing color naming conventions across teams

---

## Design Philosophy

**Warm tones only.** Bastet is a pet care platform — the brand must feel warm, inviting, and trustworthy. Cold blues/purples are explicitly avoided for primary and secondary roles.

Based on **Catppuccin** flavors:
- **Light mode**: Latte
- **Dark mode**: Mocha

### Brand Colors

| Role | Catppuccin Name | Light (Latte) | Dark (Mocha) | Usage |
|------|----------------|---------------|--------------|-------|
| **Primary** | Maroon | `#E64553` | `#EBA0AC` | CTAs, buttons, links, focus rings |
| **Secondary** | Flamingo | `#DD7878` | `#F2CDCD` | Badges, tags, supporting elements |
| **Emphasis** | Peach | `#FE640B` | `#FAB387` | Hover states, highlights, accents |
| **Warm info** | Rosewater | `#DC8A78` | `#F5E0DC` | Informational, subtle accents |

### Why These Colors

- **Maroon** — Bold warm red. Reads as "action" with confidence and warmth
- **Flamingo** — Soft pink that complements Maroon without competing
- **Peach** — Energetic orange for emphasis/hover, draws attention to highlights
- **Rosewater** — Delicate pink for info states, keeps everything cohesive

### Colors NOT Used as Primary/Secondary

| 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 |

---

## Color Categories

| 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 |

---

## Catppuccin Color Mappings

All color token definitions (primary, secondary, accent, surface, text, border) for both light and dark modes:

> See [assets/color-tokens.ts](assets/color-tokens.ts)

---

## Design Tokens

### CSS Custom Properties (light + dark)

> See [assets/styles.css](assets/styles.css)

### Tailwind Configuration

> See [assets/tailwind-colors.js](assets/tailwind-colors.js)

### TypeScript Theme System

> See [assets/theme-tokens.ts](assets/theme-tokens.ts)

### React Component Examples

> See [assets/example-component.tsx](assets/example-component.tsx)

### Flutter Implementation

Reference: `mobile/lib/app/theme/app_colors.dart`

```dart
// Access via Forui theme
final colors = context.theme.colors;
colors.primary;    // Maroon
colors.secondary;  // Flamingo
```

---

## Light/Dark Mode Conventions

### Contrast Requirements

| Element | Light Mode | Dark Mode |
|---------|------------|-----------|
| **Text on backgrounds** | Dark text on light surfaces | Light text on dark surfaces |
| **Primary actions** | High contrast (Maroon `#E64553` on Base `#eff1f5`) | Softer contrast (Maroon `#EBA0AC` on Base `#1e1e2e`) |
| **Borders** | Subtle, darker than background | Subtle, lighter than background |
| **Hover states** | Shift to Peach (warmer, energetic) | Shift to Peach (warmer, energetic) |

### Semantic Color Usage

```typescript
// 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>
```

### Mode Switching

The app MUST respect the device's system brightness preference. Never force a single mode.

```dart
// Flutter — reads system preference automatically
final brightness = MediaQuery.platformBrightnessOf(context);
final scheme = brightness == Brightness.dark
    ? AppColors.dark
    : AppColors.light;
```

---

## Accessibility Guidelines

- **WCAG AA Compliance**: Minimum 4.5:1 contrast for normal text, 3:1 for large text
- **Focus Indicators**: Use primary color with 2px outline
- **Error States**: Always pair error color with icons/text, never rely on color alone
- **Color Blindness**: Peach/Flamingo may appear similar to protanopia — always pair with shape/text cues

---

## Commands

```bash
# Install Catppuccin palette packages (optional)
npm install @catppuccin/palette

# Test contrast ratios
npx polypane # or use online tools like contrast-ratio.com
```

---

## Resources

- **Catppuccin Official**: https://github.com/catppuccin/catppuccin
- **Palette Explorer**: https://catppuccin.com/palette
- **Contrast Checker**: https://webaim.org/resources/contrastchecker/
- **Flutter implementation**: `mobile/lib/app/theme/app_colors.dart`

Attribution

NeverSightNeverSight
View sourceMore from NeverSight →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →