Best For
CRT effect / arcade style / scanlines
80-90s arcade monitor aesthetics featuring scanlines, screen curvature, neon glow, and RGB chromatic aberration effects. Ideal for gaming, retro tech, and creative projects.
Best For
CRT effect / arcade style / scanlines
Primary Move
Use scanline overlay on all content areas
Watch Out
Don't use pastel or muted colors
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: Arcade CRT
style_slug: arcade-crt
style_source: /styles/arcade-crt
# 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
STYLE: Arcade CRT
TYPE: Retro gaming CRT monitor aesthetic
MUST USE:
- Background: Always near-black (#050505 or #0a0a0a)
- Primary accent: Neon green (#39ff14) for main interactive elements
- Secondary accents: Magenta (#ff00ff), Cyan (#00ffff), Red (#ff2a2a), Yellow (#FFFF00)
- All text must use monospace or pixel fonts (font-mono)
- Scanline overlay: repeating-linear-gradient on content areas
- RGB chromatic aberration: text-shadow with offset magenta and cyan on headlines
- Neon glow: box-shadow with color matching the element
- uppercase text with wide letter-spacing for labels
MUST AVOID:
- Light/white backgrounds
- Pastel or muted colors
- Serif or sans-serif fonts
- Large border-radius (max 4px)
- Subtle/standard shadows (use neon glow only)
- Gradients that aren't neon-to-dark
Animation & Interaction Rules:
- Neon Breathing: On hover, outer glow (box-shadow) must visibly expand, optionally with subtle animate-pulse to simulate voltage instability flicker.
- Arcade Button Press: Active state (:active) must simulate the feel of a real arcade button being slammed down hard. Use strong displacement active:translate-y-[4px] and instantly change shadow size.
- CRT Distortion: On interaction, RGB chromatic aberration can be amplified by changing text-shadow offsets (magenta and cyan separation distance).
- Instant Feedback: CRT has no smooth physical inertia; interaction response time should be short, such as duration-100 or duration-150.
---
# Arcade CRT Design System
> 80-90s arcade monitor aesthetics featuring scanlines, screen curvature, neon glow, and RGB chromatic aberration effects. Ideal for gaming, retro tech, and creative projects.
## Design Philosophy
Arcade CRT style recreates the nostalgic glow of 80-90s arcade CRT monitors.
Core principles:
- Scanline overlay: all content areas use repeating-linear-gradient scanline effects
- Neon glow: key elements use text-shadow/box-shadow glow effects
- Pixel fonts: all text uses monospace fonts
- Ultra-dark backgrounds: near-pure black backgrounds maximize neon contrast
- RGB chromatic aberration: headings use magenta and cyan offset text-shadow
- High saturation: only high-saturation neon colors are used
---
## Token Dictionary (exact class mapping)
### Border
```
Width: border-2
Color: border-[#39ff14]/40
Radius: rounded-none
```
### Shadow
```
sm: shadow-[0_0_10px_rgba(57,255,20,0.3)]
md: shadow-[0_0_20px_rgba(57,255,20,0.5)]
lg: shadow-[0_0_40px_rgba(57,255,20,0.8)]
hover: shadow-[0_0_30px_rgba(57,255,20,0.6)]
focus: shadow-[0_0_15px_rgba(57,255,20,0.5)]
```
### Interaction
```
Hover translate: (none)
Hover scale: hover:shadow-[0_0_30px_rgba(57,255,20,0.6)] hover:border-[#39ff14]
Hover opacity: (none)
Transition: transition-all duration-200
Active: active:scale-[0.98]
```
### Typefaces
```
Heading: font-mono font-bold uppercase tracking-[0.15em]
Body: font-mono text-sm
Mono: font-mono
```
### Type scale
```
Hero: text-4xl md:text-6xl lg:text-8xl
H1: text-3xl md:text-5xl
H2: text-2xl md:text-3xl
H3: text-xl md:text-2xl
Body: text-sm md:text-base
Small: text-xs
```
### Spacing
```
Section: py-16 md:py-24
Container: px-4 md:px-8
Card: p-6
Gap sm: gap-4
Gap md: gap-6
Gap lg: gap-8
```
### Color roles
```
Background primary: bg-[#050505]
Background secondary: bg-[#0a0a0a]
Background accent: bg-[#39ff14]/10, bg-[#ff00ff]/10, bg-[#00ffff]/10
Text primary: text-[#39ff14]
Text secondary: text-[#00ffff]
Text muted: text-[#39ff14]/50
Button primary: bg-[#39ff14] text-black
Button secondary: bg-transparent text-[#00ffff] border-2 border-[#00ffff]
```
---
## [FORBIDDEN]
These classes are banned in this style. Check for them before returning code:
### Banned classes
- `bg-white`
- `bg-gray-50`
- `bg-gray-100`
- `rounded-xl`
- `rounded-2xl`
- `rounded-3xl`
- `rounded-full`
- `shadow-sm`
- `shadow-md`
- `shadow-lg`
- `font-serif`
- `font-sans`
- `text-gray-900`
- `text-gray-800`
### Banned patterns
- matches `^bg-white`
- matches `^bg-gray-[1-3]`
- matches `^shadow-(?!\[)`
- matches `^rounded-[23]xl`
- matches `^rounded-full`
- matches `^font-serif`
- matches `^font-sans`
### Why they are banned
- `bg-white`: CRT aesthetic requires near-black backgrounds only
- `shadow-md`: Use neon glow shadows: shadow-[0_0_20px_rgba(57,255,20,0.5)]
- `rounded-2xl`: CRT screens have sharp edges (rounded-none)
- `font-sans`: Use monospace fonts only for CRT terminal aesthetic
- `font-serif`: Use monospace fonts only for CRT terminal aesthetic
> WARNING: if your code contains any of the above, replace it before shipping.
---
## [REQUIRED]
### Every button must include
```
font-mono
uppercase
tracking-[0.2em]
border-2
transition-all duration-200
```
### Every card must include
```
bg-[#0a0a0a]
border-2
```
### Every input must include
```
bg-black
border-2
text-[#39ff14]
font-mono
focus:border-[#39ff14]
focus:shadow-[0_0_15px_rgba(57,255,20,0.3)]
```
---
## [COMPARE] Arcade CRT wrong vs right
The wrong examples below stand for generic library defaults that were never adapted to this style. Do not read them as visual suggestions.
### Button
[WRONG] **Wrong** (generic component library default, do not copy):
```html
<button class="{GENERIC_LIBRARY_BUTTON_DEFAULT}">
Click me
</button>
```
[CORRECT] **Right** (uses this style's tokens):
```html
<button class="font-mono uppercase tracking-[0.2em] border-2 transition-all duration-200 bg-[#39ff14] text-black">
Click me
</button>
```
### Card
[WRONG] **Wrong** (generic card, not adapted to this style):
```html
<div class="{GENERIC_LIBRARY_CARD_DEFAULT}">
<h3>{TITLE}</h3>
</div>
```
[CORRECT] **Right** (uses this style's card tokens):
```html
<div class="bg-[#0a0a0a] border-2 p-6">
<h3 class="font-mono font-bold uppercase tracking-[0.15em] text-xl md:text-2xl">{TITLE}</h3>
</div>
```
### Input
[WRONG] **Wrong** (generic input, not adapted to this style):
```html
<input class="{GENERIC_LIBRARY_INPUT_DEFAULT}" />
```
[CORRECT] **Right** (uses this style's input tokens):
```html
<input class="bg-black border-2 text-[#39ff14] font-mono focus:border-[#39ff14] focus:shadow-[0_0_15px_rgba(57,255,20,0.3)]" placeholder="{PLACEHOLDER}" />
```
---
## [TEMPLATES] Arcade CRT page skeletons
These skeletons use this style's tokens only. Replace `{PLACEHOLDER}` values, but keep every token in place:
### Navigation
```html
<nav class="bg-[#050505] text-[#39ff14] border-2 border-[#39ff14]/40 px-4 md:px-8">
<div class="flex items-center justify-between max-w-6xl mx-auto gap-6">
<a href="/" class="font-mono font-bold uppercase tracking-[0.15em] text-xl md:text-2xl">
{LOGO_TEXT}
</a>
<div class="flex gap-6 font-mono text-sm text-xs">
{NAV_LINKS}
</div>
</div>
</nav>
```
### Hero section
```html
<section class="bg-[#39ff14]/10 text-[#39ff14] py-16 md:py-24 px-4 md:px-8">
<div class="max-w-4xl mx-auto">
<h1 class="font-mono font-bold uppercase tracking-[0.15em] text-4xl md:text-6xl lg:text-8xl">
{HEADLINE}
</h1>
<p class="font-mono text-sm text-sm md:text-base max-w-xl">
{SUBHEADLINE}
</p>
<button class="font-mono uppercase tracking-[0.2em] border-2 transition-all duration-200 bg-[#39ff14] text-black">
{CTA_TEXT}
</button>
</div>
</section>
```
### Card grid
```html
<section class="bg-[#050505] text-[#39ff14] py-16 md:py-24 px-4 md:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="font-mono font-bold uppercase tracking-[0.15em] text-2xl md:text-3xl">{SECTION_TITLE}</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Card template - repeat for each card -->
<div class="bg-[#0a0a0a] border-2 p-6">
<h3 class="font-mono font-bold uppercase tracking-[0.15em] text-xl md:text-2xl">{CARD_TITLE}</h3>
<p class="font-mono text-sm text-sm md:text-base text-[#39ff14]/50">{CARD_DESCRIPTION}</p>
</div>
</div>
</div>
</section>
```
### Form input
```html
<input class="bg-black border-2 text-[#39ff14] font-mono focus:border-[#39ff14] focus:shadow-[0_0_15px_rgba(57,255,20,0.3)]" placeholder="{PLACEHOLDER}" />
```
### Footer
```html
<footer class="bg-[#0a0a0a] text-[#00ffff] py-16 md:py-24 px-4 md:px-8">
<div class="max-w-6xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<span class="font-mono font-bold uppercase tracking-[0.15em] text-xl md:text-2xl">{LOGO_TEXT}</span>
<p class="font-mono text-sm text-xs">{TAGLINE}</p>
</div>
<div>
<h4 class="font-mono font-bold uppercase tracking-[0.15em] text-xl md:text-2xl">{COLUMN_TITLE}</h4>
<ul class="font-mono text-sm text-xs">
{FOOTER_LINKS}
</ul>
</div>
</div>
</div>
</footer>
```
---
## [CHECKLIST] Arcade CRT post-generation self check
**Before returning code, verify every token and rule below. Fix any violation before delivering:**
### Token check
- [ ] Button includes: `font-mono uppercase tracking-[0.2em] border-2 transition-all duration-200`
- [ ] Card includes: `bg-[#0a0a0a] border-2`
- [ ] Input includes: `bg-black border-2 text-[#39ff14] font-mono focus:border-[#39ff14] focus:shadow-[0_0_15px_rgba(57,255,20,0.3)]`
### Forbidden check
- [ ] Not using `bg-white`
- [ ] Not using `bg-gray-50`
- [ ] Not using `bg-gray-100`
- [ ] Not using `rounded-xl`
- [ ] Not using `rounded-2xl`
- [ ] Not using `rounded-3xl`
- [ ] Not using `rounded-full`
- [ ] Not using `shadow-sm`
### Style rule check
- [ ] Use scanline overlay on all content areas
- [ ] Apply neon glow (text-shadow/box-shadow) to key elements
- [ ] Use monospace/pixel fonts for all text
- [ ] Keep backgrounds near-black to maximize neon contrast
- [ ] Add RGB chromatic aberration on headlines
### Style drift check
- [ ] Does not violate: Don't use pastel or muted colors
- [ ] Does not violate: Don't use serif or sans-serif body fonts
- [ ] Does not violate: Don't use rounded corners larger than 4px
- [ ] Does not violate: Don't use subtle shadows - only neon glows
- [ ] Does not violate: Don't use gradients that aren't neon-to-dark
### Delivery check
- [ ] Responsive layout holds on phone, tablet and desktop with no horizontal overflow
- [ ] Every interactive element has a visible focus state, an accessible name and a reduced-motion path
- [ ] Text contrast meets WCAG AA and colour alone never carries state
- [ ] The result is still recognizable at a glance as Arcade CRT
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use pastel or muted colors
- use serif or sans-serif body fonts
- use rounded corners larger than 4px
- use subtle shadows - only neon glows
- use gradients that aren't neon-to-dark
## 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
- [ ] don't use pastel or muted colors
- [ ] don't use serif or sans-serif body fonts
- [ ] don't use rounded corners larger than 4px
- [ ] don't use subtle shadows - only neon glows
- [ ] don't use gradients that aren't neon-to-darkMore prompt libraries: All UI Prompts · Tailwind UI Prompts · Dark Mode UI Prompts
Component Templates
Arcade CRT 霓虹按钮,带发光效果和像素字体
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
/* Arcade CRT Global Styles */
@layer base {
body {
@apply bg-[#050505] text-[#39ff14] antialiased;
background-image:
repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(57, 255, 20, 0.03) 2px,
rgba(57, 255, 20, 0.03) 4px
);
}
h1, h2, h3 {
text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
}
::selection {
@apply bg-[#39ff14] text-black;
}
}
@keyframes crt-flicker {
0%, 100% { opacity: 1; }
50% { opacity: 0.98; }
}
@keyframes crt-scanline-move {
0% { transform: translateY(0); }
100% { transform: translateY(4px); }
}
@keyframes neon-flicker {
0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
20%, 24%, 55% { opacity: 0.8; }
}
@keyframes rgb-shift {
0%, 100% { text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; }
50% { text-shadow: -3px 0 #ff00ff, 3px 0 #00ffff; }
}
/* Arcade CRT Design Tokens */
:root {
--arcade-crt-primary: #39ff14;
--arcade-crt-secondary: #050505;
--arcade-crt-accent: #ff00ff;
--arcade-crt-glow: rgba(57, 255, 20, 0.3);
}
.arcade-crt-card {
position: relative;
overflow: hidden;
}
.arcade-crt-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), transparent);
pointer-events: none;
}
.arcade-crt-card:hover::before {
opacity: 1;
}
.arcade-crt-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(57, 255, 20, 0.08);
}
.arcade-crt-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.arcade-crt-animate-in {
animation: arcade-crt-fade-in 0.5s ease-out both;
}
.arcade-crt-focus { outline: 2px solid var(--arcade-crt-primary, currentColor); outline-offset: 2px; }Related Styles
Explore these styles for ready-made tokens and components.
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
Arcade CRT style recreates the nostalgic glow of 80-90s arcade CRT monitors.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: C - Fair
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#39ff14 / #050505 | 15.03:1 | ||
| Secondary text on background | /#00ffff / #050505 | 16.25:1 | ||
| Muted text on background | /#39ff14 / #050505 | 15.03:1 | ||
| Text on secondary background | /#39ff14 / #0a0a0a | 14.6:1 | ||
| Secondary text on secondary | /#00ffff / #0a0a0a | 15.79:1 | ||
| Button primary | /#000000 / #39ff14 | 15.49:1 | ||
| Text on accent 1 | /#39ff14 / #39ff14 | 1:1 | ||
| Alt text on accent 1 | /#00ffff / #39ff14 | 1.08:1 | ||
| Text on accent 2 | /#39ff14 / #ff00ff | 2.31:1 | ||
| Alt text on accent 2 | /#00ffff / #ff00ff | 2.5:1 | ||
| Text on accent 3 | /#39ff14 / #00ffff | 1.08:1 | ||
| Alt text on accent 3 | /#00ffff / #00ffff | 1:1 |
Readability
Score
85/100
Font Size
text-sm md:text-base
Font Weight
font-mono font-bold uppercase tracking-[0.15em]
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.