kymera-brand
Kymera Systems brand design - Jarvis-inspired HUD aesthetic with dark and light modes. Use for branded UI, dashboards, presentations, and technical artifacts.
What this skill does
# Kymera Brand System
You are a systems designer creating interfaces for **Kymera Systems LLC** - a quantitative trading and AI research platform. Every artifact should feel like a sophisticated command interface from a near-future trading terminal.
## Design Philosophy
**Jarvis meets Bloomberg Terminal**: Clean, technical precision with atmospheric depth. Not generic corporate design—engineered excellence with character.
**Core Principles**:
1. **Data is the hero** - UI exists to present information clearly
2. **Layered depth** - Never flat; always atmospheric
3. **Technical sophistication** - Monospace for precision, display fonts for impact
4. **Intentional motion** - Every animation serves a purpose
## Color System
### Dark Mode (Primary)
```css
:root {
/* Foundation */
--ky-dark-deep: #0A0E1A;
--ky-dark-surface: #121826;
--ky-dark-elevated: #1A2332;
--ky-dark-border: rgba(0, 217, 255, 0.15);
/* Signature Cyan (Jarvis Blue) */
--ky-cyan-primary: #00D9FF;
--ky-cyan-glow: #00FFFF;
--ky-cyan-dim: #0099AA;
/* Status Colors */
--ky-success: #00FF88;
--ky-warning: #FFB800;
--ky-critical: #FF3366;
/* Text */
--ky-text-primary: #FFFFFF;
--ky-text-secondary: rgba(255, 255, 255, 0.7);
--ky-text-muted: rgba(255, 255, 255, 0.4);
/* Glow Effects */
--ky-glow-cyan: 0 0 20px rgba(0, 217, 255, 0.3), 0 0 40px rgba(0, 217, 255, 0.15);
--ky-glow-intense: 0 0 10px var(--ky-cyan-glow), 0 0 30px var(--ky-cyan-primary), 0 0 50px rgba(0, 217, 255, 0.5);
}
```
### Light Mode (Professional/Print)
```css
:root.light {
/* Foundation */
--ky-light-bg: #F8FAFC;
--ky-light-surface: #FFFFFF;
--ky-light-elevated: #F1F5F9;
--ky-light-border: rgba(10, 14, 26, 0.1);
/* Signature Blue (Deeper for contrast) */
--ky-blue-primary: #0066CC;
--ky-blue-dark: #004499;
--ky-blue-light: #E6F2FF;
/* Status Colors (Adjusted for light bg) */
--ky-success: #059669;
--ky-warning: #D97706;
--ky-critical: #DC2626;
/* Text */
--ky-text-primary: #0A0E1A;
--ky-text-secondary: rgba(10, 14, 26, 0.7);
--ky-text-muted: rgba(10, 14, 26, 0.5);
/* Subtle Accents (no glow on light) */
--ky-accent-border: 2px solid var(--ky-blue-primary);
--ky-accent-bg: var(--ky-blue-light);
}
```
## Typography
### Font Stack
```css
/* Technical/Data - Primary */
--ky-font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
/* Display/Headers */
--ky-font-display: 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
/* Body (when mono inappropriate) */
--ky-font-body: 'Inter Tight', 'IBM Plex Sans', sans-serif;
```
### Usage Rules
| Context | Font | Weight | Style |
|---------|------|--------|-------|
| Hero titles | Display | 700-900 | Uppercase, wide tracking |
| Section headers | Display | 600-700 | Title case |
| Body text | Body/Mono | 400-500 | Normal |
| Data/numbers | Mono | 400-600 | Tabular figures |
| Code/technical | Mono | 400 | Normal |
## Component Patterns
### Dark Mode Card
```css
.ky-card {
background: var(--ky-dark-surface);
border: 1px solid var(--ky-dark-border);
border-radius: 8px;
box-shadow: var(--ky-glow-cyan);
backdrop-filter: blur(10px);
}
.ky-card:hover {
box-shadow: var(--ky-glow-intense);
border-color: var(--ky-cyan-primary);
}
```
### Light Mode Card
```css
.ky-card-light {
background: var(--ky-light-surface);
border: 1px solid var(--ky-light-border);
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ky-card-light:hover {
border-color: var(--ky-blue-primary);
box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}
```
### Navigation
```css
.ky-nav {
background: rgba(10, 14, 26, 0.9);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--ky-dark-border);
}
.ky-nav-link {
font-family: var(--ky-font-mono);
font-size: 0.8125rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--ky-text-muted);
transition: color 0.2s, text-shadow 0.2s;
}
.ky-nav-link:hover {
color: var(--ky-cyan-primary);
text-shadow: 0 0 10px var(--ky-cyan-glow);
}
```
### Buttons
```css
/* Primary - Glowing */
.ky-btn-primary {
background: var(--ky-cyan-primary);
color: var(--ky-dark-deep);
font-family: var(--ky-font-mono);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 0.75rem 1.5rem;
border: none;
box-shadow: var(--ky-glow-cyan);
transition: all 0.3s ease;
}
.ky-btn-primary:hover {
box-shadow: var(--ky-glow-intense);
transform: translateY(-2px);
}
/* Ghost */
.ky-btn-ghost {
background: transparent;
color: var(--ky-cyan-primary);
border: 1px solid var(--ky-cyan-dim);
}
.ky-btn-ghost:hover {
background: rgba(0, 217, 255, 0.1);
border-color: var(--ky-cyan-primary);
}
```
## Background Treatments
### Dark Mode - Layered Atmosphere
```css
.ky-bg-dark {
background:
radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
linear-gradient(180deg, var(--ky-dark-deep) 0%, var(--ky-dark-surface) 100%);
}
/* Grid overlay */
.ky-grid-overlay {
background-image:
linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
}
```
### Light Mode - Clean Professional
```css
.ky-bg-light {
background:
linear-gradient(180deg, var(--ky-light-bg) 0%, var(--ky-light-elevated) 100%);
}
/* Subtle pattern */
.ky-pattern-light {
background-image:
radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
background-size: 24px 24px;
}
```
## Animation
### Core Timing Functions
```css
/* Smooth technical */
--ky-ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
/* Quick snap */
--ky-ease-snap: cubic-bezier(0.0, 0.0, 0.2, 1);
/* Cinematic */
--ky-ease-cinematic: cubic-bezier(0.65, 0.0, 0.35, 1);
```
### Signature Animations
```css
/* Scan line effect */
@keyframes ky-scan {
0% { transform: translateY(-100%); opacity: 0.5; }
100% { transform: translateY(100vh); opacity: 0; }
}
/* Glow pulse */
@keyframes ky-glow-pulse {
0%, 100% { box-shadow: var(--ky-glow-cyan); }
50% { box-shadow: var(--ky-glow-intense); }
}
/* Data fade in */
@keyframes ky-fade-in {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
```
## Context Guidelines
### Trading Dashboards
- Monospace for ALL numeric data
- High data density, clear hierarchy
- Real-time indicators with pulse animations
- Market colors: green=bullish, red=bearish (alongside brand cyan)
- Status indicators prominent
### Academic/Research
- Cleaner typography (IBM Plex Sans for body)
- Light mode acceptable for papers/print
- Cyan accents subtly integrated
- Diagrams with geometric precision
- Professional but distinctive
### Presentations
- Dark backgrounds with geometric accents
- Minimal text per slide
- Display fonts for titles
- Cyan highlighting for emphasis
- Grid/circuit patterns in backgrounds
## Implementation Checklist
**Every artifact must have:**
- [ ] CSS custom properties for colors
- [ ] Proper font imports (Google Fonts)
- [ ] Dark mode as default (light mode as option)
- [ ] Cyan used as signature accent
- [ ] Background depth (gradients/patterns)
- [ ] Hover states with glow effects
- [ ] Responsive design
- [ ] WCAG AA contrast minimum
- [ ] Monospace for data/code
- [ ] Smooth transitions (0.2-0.3s)
## Anti-Patterns
**NEVER:**
- Generic blue gradients on white
- System fonts (Arial, Times, Calibri)
- Flat, lifeless backgrounds
- Overuse cyan to visual fatigue
- Animations that distract from data
- Inconsistent spacing/alignment
**ALWAYS:**
- Think like designing a command interface
- Create depth through layering
- Make data the hero
- Ensure technical precision
- Respect accessibility standards
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".