Best For
neon Tokyo / Tokyo nightscape / Kabukicho
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
neon Tokyo / Tokyo nightscape / Kabukicho
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
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.
---
# Neon Tokyo Design System
> 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.
## Design Philosophy
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.
Core concepts:
- Urban nightscape: A near-black deep blue-gray base simulating Tokyo's late-night city skyline
- Neon signage: Multi-color neon lights layered together, with pink, cyan, orange, and purple flickering in alternation
- Wet reflections: Elements carry a subtle reflective quality, like neon reflections on rain-slicked streets
- Layered depth: Bright foreground and dark background, simulating the visual depth of city alleyways
The key difference from Cyberpunk Neon: Neon Tokyo is warmer, more organic, and closer to real photography aesthetics. It does not pursue cold technological vibes but instead captures the lonely romance of a late-night wanderer in a neon jungle.
Suitable for: nightlife apps, music streaming, streetwear brands, urban photography portfolios, Japanese izakaya menus.
---
## Token Dictionary (exact class mapping)
### Border
```
Width: border-2
Color: border-[#ff1493]/30
Radius: rounded-sm
```
### Shadow
```
sm: shadow-[0_0_10px_rgba(255,20,147,0.2)]
md: shadow-[0_0_15px_rgba(255,20,147,0.3)]
lg: shadow-[0_0_25px_rgba(255,20,147,0.4)]
hover: hover:shadow-[0_0_30px_rgba(255,20,147,0.5)]
focus: focus:shadow-[0_0_20px_rgba(255,20,147,0.4)]
```
### Interaction
```
Hover translate: (none)
Hover scale: hover:shadow-[0_0_30px_rgba(255,20,147,0.5)]
Hover opacity: (none)
Transition: transition-all duration-300
Active: active:scale-95
```
### Typefaces
```
Heading: font-bold
Body: font-sans
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-[#0a0a1a]
Background secondary: bg-[#0a0a1a]/80
Background accent: bg-[#ff1493], bg-[#00f0ff], bg-[#ff6b00], bg-[#bc13fe]
Text primary: text-white
Text secondary: text-[#ff1493]
Text muted: text-gray-400
Button primary: bg-transparent text-[#ff1493] border-2 border-[#ff1493]
Button secondary: bg-[#00f0ff] text-[#0a0a1a]
```
---
## [FORBIDDEN]
These classes are banned in this style. Check for them before returning code:
### Banned classes
- `bg-white`
- `bg-gray-50`
- `bg-gray-100`
- `shadow-sm`
- `shadow-md`
- `shadow-lg`
- `text-gray-900`
- `rounded-2xl`
- `rounded-3xl`
### Banned patterns
- matches `^bg-(?:white|gray-[1-3]|slate-[1-3])`
- matches `^shadow-(?!\[|none)`
- matches `^rounded-(?:2xl|3xl)`
### Why they are banned
- `bg-white`: Neon Tokyo uses dark night-sky backgrounds only
- `shadow-md`: Use colored neon glow: shadow-[0_0_20px_rgba(255,20,147,0.5)]
- `rounded-2xl`: Keep corners minimal (rounded-sm max)
> WARNING: if your code contains any of the above, replace it before shipping.
---
## [REQUIRED]
### Every button must include
```
px-6 py-3
font-bold
uppercase tracking-wider
transition-all duration-300
rounded-sm
```
### Every card must include
```
bg-[#0a0a1a]/80
backdrop-blur-md
border border-[#ff1493]/30
rounded-sm
```
### Every input must include
```
bg-[#0a0a1a]/80
border border-[#ff1493]/30
rounded-sm
text-white
focus:border-[#ff1493]
focus:shadow-[0_0_15px_rgba(255,20,147,0.3)]
focus:outline-none
```
---
## [COMPARE] Neon Tokyo 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="px-6 py-3 font-bold uppercase tracking-wider transition-all duration-300 rounded-sm bg-transparent text-[#ff1493] border-2 border-[#ff1493]">
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-[#0a0a1a]/80 backdrop-blur-md border border-[#ff1493]/30 rounded-sm p-6">
<h3 class="font-bold 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-[#0a0a1a]/80 border border-[#ff1493]/30 rounded-sm text-white focus:border-[#ff1493] focus:shadow-[0_0_15px_rgba(255,20,147,0.3)] focus:outline-none" placeholder="{PLACEHOLDER}" />
```
---
## [TEMPLATES] Neon Tokyo page skeletons
These skeletons use this style's tokens only. Replace `{PLACEHOLDER}` values, but keep every token in place:
### Navigation
```html
<nav class="bg-[#0a0a1a] text-white border-2 border-[#ff1493]/30 px-4 md:px-8">
<div class="flex items-center justify-between max-w-6xl mx-auto gap-6">
<a href="/" class="font-bold text-xl md:text-2xl">
{LOGO_TEXT}
</a>
<div class="flex gap-6 font-sans text-xs">
{NAV_LINKS}
</div>
</div>
</nav>
```
### Hero section
```html
<section class="bg-[#ff1493] text-white py-16 md:py-24 px-4 md:px-8">
<div class="max-w-4xl mx-auto">
<h1 class="font-bold text-4xl md:text-6xl lg:text-8xl">
{HEADLINE}
</h1>
<p class="font-sans text-sm md:text-base max-w-xl">
{SUBHEADLINE}
</p>
<button class="px-6 py-3 font-bold uppercase tracking-wider transition-all duration-300 rounded-sm bg-transparent text-[#ff1493] border-2 border-[#ff1493]">
{CTA_TEXT}
</button>
</div>
</section>
```
### Card grid
```html
<section class="bg-[#0a0a1a] text-white py-16 md:py-24 px-4 md:px-8">
<div class="max-w-6xl mx-auto">
<h2 class="font-bold 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-[#0a0a1a]/80 backdrop-blur-md border border-[#ff1493]/30 rounded-sm p-6">
<h3 class="font-bold text-xl md:text-2xl">{CARD_TITLE}</h3>
<p class="font-sans text-sm md:text-base text-gray-400">{CARD_DESCRIPTION}</p>
</div>
</div>
</div>
</section>
```
### Form input
```html
<input class="bg-[#0a0a1a]/80 border border-[#ff1493]/30 rounded-sm text-white focus:border-[#ff1493] focus:shadow-[0_0_15px_rgba(255,20,147,0.3)] focus:outline-none" placeholder="{PLACEHOLDER}" />
```
### Footer
```html
<footer class="bg-[#0a0a1a]/80 text-[#ff1493] 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-bold text-xl md:text-2xl">{LOGO_TEXT}</span>
<p class="font-sans text-xs">{TAGLINE}</p>
</div>
<div>
<h4 class="font-bold text-xl md:text-2xl">{COLUMN_TITLE}</h4>
<ul class="font-sans text-xs">
{FOOTER_LINKS}
</ul>
</div>
</div>
</div>
</footer>
```
---
## [CHECKLIST] Neon Tokyo post-generation self check
**Before returning code, verify every token and rule below. Fix any violation before delivering:**
### Token check
- [ ] Button includes: `px-6 py-3 font-bold uppercase tracking-wider transition-all duration-300 rounded-sm`
- [ ] Card includes: `bg-[#0a0a1a]/80 backdrop-blur-md border border-[#ff1493]/30 rounded-sm`
- [ ] Input includes: `bg-[#0a0a1a]/80 border border-[#ff1493]/30 rounded-sm text-white focus:border-[#ff1493] focus:shadow-[0_0_15px_rgba(255,20,147,0.3)] focus:outline-none`
### Forbidden check
- [ ] Not using `bg-white`
- [ ] Not using `bg-gray-50`
- [ ] Not using `bg-gray-100`
- [ ] Not using `shadow-sm`
- [ ] Not using `shadow-md`
- [ ] Not using `shadow-lg`
- [ ] Not using `text-gray-900`
- [ ] Not using `rounded-2xl`
### Style rule check
- [ ] Use deep night blue-black background bg-[#0a0a1a] or bg-gradient-to-b from-[#0a0a1a] to-[#12041e]
- [ ] Neon pink text text-[#ff1493] with glow [text-shadow:0_0_10px_rgba(255,20,147,0.6)]
- [ ] Alternate multi-color neon borders border-[#ff1493], border-[#00f0ff], border-[#ff6b00]
- [ ] Enhance neon glow on hover hover:shadow-[0_0_30px_rgba(255,20,147,0.5)]
- [ ] Use sans-serif bold fonts paired with Japanese kana decorative elements
### Style drift check
- [ ] Does not violate: Do not use white or light backgrounds
- [ ] Does not violate: Do not use low-saturation, dull colors
- [ ] Does not violate: Do not use regular shadows shadow-md (must be colored glow shadows)
- [ ] Does not violate: Do not use soft gradients (such as soft pink, pale blue)
- [ ] Does not violate: Do not use serif fonts (except as Japanese decorative elements)
### 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 Neon Tokyo
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use white or light backgrounds
- use low-saturation, dull colors
- use regular shadows shadow-md (must be colored glow shadows)
- use soft gradients (such as soft pink, pale blue)
- use serif fonts (except as Japanese decorative elements)
- use overly neat, corporate layouts
- use single-color neon (must be multi-color interweaving)
## 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 white or light backgrounds
- [ ] do not use low-saturation, dull colors
- [ ] do not use regular shadows shadow-md (must be colored glow shadows)
- [ ] do not use soft gradients (such as soft pink, pale blue)
- [ ] do not use serif fonts (except as Japanese decorative elements)More prompt libraries: All UI Prompts · Tailwind UI Prompts · Dark Mode UI Prompts
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
FAQ
/* 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.