Best For
outrun / synthwave / retrowave
Outrun 复古未来
80s sunsets, palm tree silhouettes, sports cars, grid horizons, and retro wave aesthetics. Magenta and purple neon with cyan skies -- brimming with speed and nostalgic futurism.
Best For
outrun / synthwave / retrowave
Primary Move
Use magenta, purple, and cyan neon palette
Watch Out
Do not use bright white backgrounds
AI Implementation
Use the Hard Prompt by default to generate UI. Use the Design Spec to understand, modify, and review the style. Use the Creative Brief for early exploration.
Use this by default: copy it, append the concrete requirement, and let AI generate consistent production UI.
When to use
How to use
STYLEKIT_STYLE_REFERENCE
style_name: Outrun
style_slug: outrun
style_source: /styles/outrun
# Hard Prompt
## When To Use
Use this when you want AI to generate code with strict style consistency. It is the safest default for production UI.
## How To Use
- Copy the full prompt into ChatGPT, Claude, Cursor, or another coding assistant.
- Append the concrete product/page requirement after the prompt.
- After generation, check the forbidden rules and interaction states before accepting the output.
Strictly follow the style rules below and maintain consistency. No style drift allowed.
## Requirements
- Prioritize style consistency first, then creative extension.
- When conflicts arise, treat prohibitions as the highest priority.
- Self-check before output: verify colors, typography, spacing, and interactions still match this style.
## Style Rules
You are an Outrun retro-futuristic design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Bright white backgrounds
- Modern minimalist design
- Omitting neon glow effects
- Formal fonts
## Must Follow
- Magenta-purple-cyan palette from-[#ff006e], from-[#a020f0], text-[#00d4ff]
- Dark backgrounds bg-[#0a0a0a]
- Neon glow shadow-[0_0_20px_rgba(255,0,110,0.5)]
- Grid background decorations
- Sunset gradient from-[#ff6b35] via-[#ff006e] to-[#a020f0]
## Color Palette
Primary:
- Magenta: #ff006e
- Purple: #a020f0
- Cyan: #00d4ff
- Black: #0a0a0a
- Orange: #ff6b35
## Special Elements
- Perspective grid floor
- Sunset sun
- Palm tree silhouettes
- Scanline effects
## Animation & Interaction Rules
- Perspective Drive: Grid or scanlines create a high-speed forward-rush illusion through bg-position shift on hover.
- Dual Neon Glow: Hover glow layers at least magenta and cyan dual shadows for retro neon chromatic dispersion.
- CRT Jitter: Active state allows brief flashing and slight press-down, simulating vintage screen feedback.
- Horizon Tilt: Card interactions can pair with very slight lift and bottom light band enhancement for horizon momentum.
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use bright white backgrounds
- use modern minimalist style
- omit neon glow effects
- use soft low-saturation palette
- use single-color glow only (Outrun must have magenta+cyan chromatic dispersion layers)
- use completely static grid backgrounds (lacking speed illusion loses the style's core)
## Self-Check (Verify Before Shipping)
If any item fails, the style has drifted — fix before shipping.
- [ ] No purple-to-blue gradients
- [ ] No overused fonts (Inter, Roboto, Geist, Fraunces, Plus Jakarta Sans)
- [ ] No nested cards (cards inside cards)
- [ ] No gray text on colored backgrounds
- [ ] Body text contrast meets WCAG AA (>= 4.5:1)
- [ ] No bounce or elastic easing curves
- [ ] Animations have a prefers-reduced-motion fallback
- [ ] Body text line length capped at 65-75 characters
- [ ] No side-stripe accent borders (border-left/right > 1px)
- [ ] No gradient text (background-clip: text)
- [ ] No glassmorphism used as the default surface treatment
- [ ] No tiny uppercase tracked eyebrow labels above every section heading
- [ ] do not use bright white backgrounds
- [ ] do not use modern minimalist style
- [ ] do not omit neon glow effects
- [ ] do not use soft low-saturation palette
- [ ] do not use single-color glow only (Outrun must have magenta+cyan chromatic dispersion layers)Component Templates
Outrun 风格按钮,双霓虹色散与扫描线位移反馈
Frontend Readiness
This layer tracks whether the style is ready for real websites: theme modes, state feedback, keyboard access, and performance constraints.
Overall
51%
Fallback
Dark Mode
0%
MissingUI States
79%
PartialMotion
70%
PartialA11y
70%
PartialPerformance
35%
FallbackButton
Default / Hover / Focus Visible / Active / Disabled
Input
Default / Hover / Focus Visible / Disabled / Error
Card
Default / Hover / Focus Visible / Loading / Skeleton
Form
Default / Focus Visible / Disabled / Loading / Error
FAQ
/* Outrun 全局样式 */
:root {
--outrun-magenta: #ff006e;
--outrun-purple: #a020f0;
--outrun-cyan: #00d4ff;
--outrun-black: #0a0a0a;
--outrun-orange: #ff6b35;
}
/* 霓虹发光 */
.outrun-glow {
text-shadow:
0 0 10px var(--outrun-magenta),
0 0 20px var(--outrun-magenta),
0 0 40px var(--outrun-magenta);
}
/* 网格地板 */
.outrun-grid {
background-image:
linear-gradient(90deg, rgba(255, 0, 110, 0.3) 1px, transparent 1px),
linear-gradient(rgba(255, 0, 110, 0.3) 1px, transparent 1px);
background-size: 60px 30px;
transform: perspective(500px) rotateX(60deg);
transform-origin: bottom;
}
/* 日落渐变 */
.outrun-sunset {
background: linear-gradient(
to bottom,
#0a0a0a 0%,
#2d0a4e 30%,
#ff006e 60%,
#ff6b35 100%
);
}
/* 扫描线 */
.outrun-scanlines::after {
content: "";
position: absolute;
inset: 0;
background: repeating-linear-gradient(
0deg,
rgba(0, 0, 0, 0.15) 0px,
rgba(0, 0, 0, 0.15) 1px,
transparent 1px,
transparent 2px
);
pointer-events: none;
}
@keyframes outrun-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes outrun-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.outrun-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(255, 0, 110, 0.08);
}
.outrun-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.outrun-animate-in {
animation: outrun-fade-in 0.5s ease-out both;
}IDE Integration
Download configuration files for AI coding assistants to generate code in this style.
Style Pack
Get complete machine-readable style assets including design tokens, Tailwind presets, CSS variables, and shadcn/ui themes.
Metadata
Style metadata including version information
Design Tokens
Compatible with Figma / Style Dictionary / Tokens Studio
Tailwind Preset
Tailwind CSS theme preset, import directly in config
Global CSS
CSS variables and base styles
shadcn Theme
shadcn/ui theme configuration
CSS Variables
Pure CSS variables, works with any project
SKILL.md
Loadable skill pack for Cursor / Claude Code / VS Code
Outrun is a visual aesthetic rooted in 80s pop culture, named after the eponymous video game. It fuses sunsets, sports cars, palm trees, and neon lights into an eternal retro-futuristic visual language.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: D - Poor
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#ff006e / #0a0a0a | 5.16:1 | ||
| Secondary text on background | /#00d4ff / #0a0a0a | 11.18:1 | ||
| Muted text on background | /#a020f0 / #0a0a0a | 3.73:1 | ||
| Text on secondary background | /#ff006e / #1a0a2e | 4.86:1 | ||
| Secondary text on secondary | /#00d4ff / #1a0a2e | 10.53:1 | ||
| Text on accent 1 | /#ff006e / #ff006e | 1:1 | ||
| Alt text on accent 1 | /#00d4ff / #ff006e | 2.17:1 | ||
| Text on accent 2 | /#ff006e / #00d4ff | 2.17:1 | ||
| Alt text on accent 2 | /#00d4ff / #00d4ff | 1:1 | ||
| Text on accent 3 | /#ff006e / #a020f0 | 1.38:1 | ||
| Alt text on accent 3 | /#00d4ff / #a020f0 | 3:1 | ||
| Text on accent 4 | /#ff006e / #ff6b35 | 1.35:1 | ||
| Alt text on accent 4 | /#00d4ff / #ff6b35 | 1.6:1 |
Readability
Score
87/100
Font Size
text-sm md:text-base
Font Weight
font-bold tracking-widest uppercase
Line Height
default
Scoring is based on WCAG 2.1 standards. AA requires 4.5:1 contrast for normal text, 3:1 for large text; AAA requires 7:1 for normal text, 4.5:1 for large text.