Best For
霓虹 / 东京 / 夜景
Neon Tokyo
Tokyo Kabukicho neon nightscape style with rain-slicked street reflections, layered neon signage, and cyberpunk urban night vibes. Unlike cyberpunk-neon's sci-fi feel, this leans toward authentic urban nightscapes.
Best For
霓虹 / 东京 / 夜景
Primary Move
Use deep night blue-black background bg-[#0a0a1a] or bg-gradient-to-b from-[#0a0a1a] to-[#12041e]
Watch Out
Do not use white or light backgrounds
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#ff1493
Secondary
#0a0a1a
Accent 1
#00f0ff
Accent 2
#ff6b00
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: Neon Tokyo
style_slug: neon-tokyo
style_source: /styles/neon-tokyo
# 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: Neon Tokyo
TYPE: Urban nightscape interface
MUST USE:
- Dark night sky background: bg-[#0a0a1a]
- Multi-color neon glows (not single-color)
- Primary pink: text-[#ff1493], border-[#ff1493]
- Cyan accent: text-[#00f0ff]
- Warm neon: text-[#ff6b00]
- Purple neon: text-[#bc13fe]
- Glow shadows with color: shadow-[0_0_20px_rgba(255,20,147,0.5)]
- backdrop-blur for glass/reflection effect
- font-bold uppercase tracking-wider for labels
- rounded-sm for subtle edge softness
MUST AVOID:
- Light/white backgrounds
- Low saturation or muted colors
- Regular shadows (shadow-md)
- Serif fonts (except for Japanese decorative text)
- Single-color neon palettes
- Corporate or overly clean layouts
COLOR RULES:
- Neon Pink: #ff1493 (primary)
- Night Sky: #0a0a1a (background)
- Cyan Neon: #00f0ff
- Warm Neon: #ff6b00
- Purple Neon: #bc13fe
DIFFERENCE FROM CYBERPUNK-NEON:
- Warmer, more organic feel
- Multi-color neon mixing (not cyan-dominant)
- Street photography aesthetic, not sci-fi
- Wet reflections, not scan lines
## Animation & Interaction Rules
- Rain-Slicked Reflections: Bottom reflection gradients should intensify on hover with higher opacity and mixed-color refraction.
- Signboard Flicker: Primary neon headings can use subtle irregular flicker to mimic aging street signage.
- Bleeding Glows: Hover state should expand pink/cyan/orange glow layers simultaneously so light bleeds at the edges.
- Damp Atmosphere: Transitions stay smooth (duration-300 to 500) to preserve wet-night ambience rather than sharp arcade motion.Component Templates
霓虹东京风格的发光按钮
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
/* Neon Tokyo Global Styles */
@layer base {
body {
@apply bg-[#0a0a1a] text-white antialiased;
}
h1, h2, h3 {
text-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}
::selection {
@apply bg-[#ff1493] text-white;
}
}
/* Wet street reflection */
.neon-tokyo-reflect {
position: relative;
}
.neon-tokyo-reflect::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
transparent 60%,
rgba(255, 20, 147, 0.03) 80%,
rgba(0, 240, 255, 0.03) 100%
);
pointer-events: none;
}
@keyframes neon-flicker {
0%, 95%, 100% { opacity: 1; }
96% { opacity: 0.6; }
97% { opacity: 1; }
98% { opacity: 0.8; }
}
/* Neon Tokyo Design Tokens */
:root {
--neon-tokyo-primary: #ff1493;
--neon-tokyo-secondary: #0a0a1a;
--neon-tokyo-accent: #00f0ff;
--neon-tokyo-glow: rgba(255, 20, 147, 0.3);
}
.neon-tokyo-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(255, 20, 147, 0.08);
}
.neon-tokyo-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.neon-tokyo-animate-in {
animation: neon-tokyo-fade-in 0.5s ease-out both;
}
.neon-tokyo-hover-lift { transition: transform 0.3s ease; }
.neon-tokyo-hover-lift:hover { transform: translateY(-2px); }
.neon-tokyo-focus { outline: 2px solid var(--neon-tokyo-primary, currentColor); outline-offset: 2px; }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
Neon Tokyo draws inspiration from the neon nightscapes of Tokyo's Kabukicho, Shinjuku, and Shibuya. Unlike Cyberpunk Neon's sci-fi futurism, this style is closer to authentic urban nightscapes -- rain-soaked streets reflecting layered neon signs, warm and cool colors intertwining on wet asphalt.
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 | /#ffffff / #0a0a1a | 19.6:1 | ||
| Secondary text on background | /#ff1493 / #0a0a1a | 5.39:1 | ||
| Muted text on background | /#9ca3af / #0a0a1a | 7.72:1 | ||
| Text on secondary background | /#ffffff / #0a0a1a | 19.6:1 | ||
| Secondary text on secondary | /#ff1493 / #0a0a1a | 5.39:1 | ||
| Text on accent 1 | /#ffffff / #ff1493 | 3.64:1 | ||
| Alt text on accent 1 | /#ff1493 / #ff1493 | 1:1 | ||
| Text on accent 2 | /#ffffff / #00f0ff | 1.41:1 | ||
| Alt text on accent 2 | /#ff1493 / #00f0ff | 2.58:1 | ||
| Text on accent 3 | /#ffffff / #ff6b00 | 2.86:1 | ||
| Alt text on accent 3 | /#ff1493 / #ff6b00 | 1.27:1 | ||
| Text on accent 4 | /#ffffff / #bc13fe | 4.5:1 | ||
| Alt text on accent 4 | /#ff1493 / #bc13fe | 1.24:1 |
Readability
Score
90/100
Font Size
text-sm md:text-base
Font Weight
font-bold
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.