Best For
赛博和风 / 数字和风 / 青海波
Cyber Wafuu
A Japanese cyber aesthetic where seigaiha wave patterns merge with circuit traces, torii gate navigation frames, asanoha hemp leaf grids, kintsugi gold repair lines, and shoji screen grid panels -- traditional patterns 'hacked' by technology.
Best For
赛博和风 / 数字和风 / 青海波
Primary Move
Use dark indigo backgrounds (bg-[#080814])
Watch Out
No soft pastel colors
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#1e3a5f
Secondary
#080814
Accent 1
#c41e3a
Accent 2
#c9a227
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: Cyber Wafuu
style_slug: cyber-wafuu
style_source: /styles/cyber-wafuu
# 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 a Cyber Wafuu design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Soft pastel colors
- Organic irregular shapes
- Western serif fonts
- rounded-full borders
- Light backgrounds (bg-white, bg-gray-50, etc.)
- Standard drop shadows (use glow effects only)
## Must Follow
- Dark indigo backgrounds: bg-[#080814] or bg-[#1e3a5f]
- Seigaiha wave pattern as background texture (repeating-radial-gradient)
- Shoji screen grid frame structure for cards
- Kintsugi gold crack lines as border accents
- Torii gate shapes for navigation frames
- Circuit trace line connections between elements
- Electric blue accent: #38bdf8 with glow effects
- Vermillion #c41e3a and gold #c9a227 for traditional accents
## Animation & Interaction Rules
- Motion should feel ceremonial and precise, not playful: keep transitions in the 200-320ms range with ease-out
- Hover should use subtle lift (1-2px), circuit-glow expansion, and shoji line brightening
- Active states should compress gently (press-down 1px or scale 0.98-0.99) while tightening glow
- Prefer directional sweeps (circuit trace / wave shimmer) triggered by hover or focus, then stop
- Avoid infinite decorative loops on core controls, bounce springs, or oversized transforms that break the calm discipline
## Color Palette
Primary:
- Indigo: #1e3a5f
- Dark Background: #080814
- Vermillion: #c41e3a
- Gold Foil: #c9a227
- Electric Blue: #38bdf8
## Unique Elements
- Seigaiha wave pattern (CSS repeating-radial-gradient)
- Kintsugi gold crack line accents (gradient border decorations)
- Shoji screen grid card frames (CSS grid overlays)
- Torii gate navigation frames
- Asanoha hemp leaf pattern backgroundComponent Templates
Button with seigaiha pattern background and neon glow border
Frontend Readiness
This layer tracks whether the style is ready for real websites: theme modes, state feedback, keyboard access, and performance constraints.
Overall
58%
Fallback
Dark Mode
35%
FallbackUI 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
/* Cyber Wafuu Global Styles */
:root {
--cw-indigo: #1e3a5f;
--cw-dark: #080814;
--cw-vermillion: #c41e3a;
--cw-gold: #c9a227;
--cw-blue: #38bdf8;
}
/* Seigaiha wave pattern (digital version) */
.cw-seigaiha {
background-image:
radial-gradient(circle at 50% 100%, transparent 60%, rgba(56, 189, 248, 0.04) 60%, rgba(56, 189, 248, 0.04) 62%, transparent 62%),
radial-gradient(circle at 0% 100%, transparent 60%, rgba(56, 189, 248, 0.04) 60%, rgba(56, 189, 248, 0.04) 62%, transparent 62%);
background-size: 60px 30px;
}
/* Kintsugi gold crack line */
.cw-kintsugi {
position: relative;
}
.cw-kintsugi::after {
content: "";
position: absolute;
top: 4px;
left: 8px;
right: 8px;
height: 1px;
background: linear-gradient(90deg,
transparent 0%,
var(--cw-gold) 15%,
transparent 30%,
var(--cw-gold) 50%,
transparent 65%,
var(--cw-gold) 80%,
transparent 100%
);
opacity: 0.3;
box-shadow: 0 0 6px rgba(201, 162, 39, 0.3);
}
/* Shoji screen grid */
.cw-shoji-grid {
position: relative;
}
.cw-shoji-grid::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(to right, rgba(30, 58, 95, 0.12) 1px, transparent 1px),
linear-gradient(to bottom, rgba(30, 58, 95, 0.12) 1px, transparent 1px);
background-size: 33.33% 50%;
pointer-events: none;
}
/* Circuit trace decoration */
.cw-circuit::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg,
transparent 0%,
var(--cw-blue) 15%,
transparent 35%,
var(--cw-blue) 55%,
transparent 75%,
var(--cw-blue) 90%,
transparent 100%
);
opacity: 0.2;
}
/* Asanoha hemp leaf pattern overlay */
.cw-asanoha {
background-image:
linear-gradient(30deg, rgba(30, 58, 95, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(30, 58, 95, 0.06) 87.5%),
linear-gradient(150deg, rgba(30, 58, 95, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(30, 58, 95, 0.06) 87.5%),
linear-gradient(30deg, rgba(30, 58, 95, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(30, 58, 95, 0.06) 87.5%),
linear-gradient(150deg, rgba(30, 58, 95, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(30, 58, 95, 0.06) 87.5%);
background-size: 40px 70px;
background-position: 0 0, 0 0, 20px 35px, 20px 35px;
}
/* Gold foil shimmer */
.cw-gold-foil {
background: linear-gradient(
135deg,
rgba(201, 162, 39, 0.08) 0%,
rgba(201, 162, 39, 0.03) 50%,
rgba(201, 162, 39, 0.12) 100%
);
}
.cyber-wafuu-filter { filter: brightness(1.05) contrast(1.02); }
.cyber-wafuu-hover-lift { transition: transform 0.3s ease; }
.cyber-wafuu-hover-lift:hover { transform: translateY(-2px); }
.cyber-wafuu-focus { outline: 2px solid var(--cyber-wafuu-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
Cyber Wafuu reimagines traditional Japanese visual culture through digital disruption, creating a sophisticated fusion where heritage patterns are "hacked" by technology.
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 | /#e2e8f0 / #080814 | 16.14:1 | ||
| Secondary text on background | /#38bdf8 / #080814 | 9.29:1 | ||
| Muted text on background | /#e2e8f0 / #080814 | 16.14:1 | ||
| Text on secondary background | /#e2e8f0 / #1e3a5f | 9.33:1 | ||
| Secondary text on secondary | /#38bdf8 / #1e3a5f | 5.37:1 | ||
| Button primary | /#e2e8f0 / #1e3a5f | 9.33:1 | ||
| Text on accent 1 | /#e2e8f0 / #c41e3a | 4.74:1 | ||
| Alt text on accent 1 | /#38bdf8 / #c41e3a | 2.73:1 | ||
| Text on accent 2 | /#e2e8f0 / #c9a227 | 1.96:1 | ||
| Alt text on accent 2 | /#38bdf8 / #c9a227 | 1.13:1 | ||
| Text on accent 3 | /#e2e8f0 / #38bdf8 | 1.74:1 | ||
| Alt text on accent 3 | /#38bdf8 / #38bdf8 | 1:1 |
Readability
Score
90/100
Font Size
text-sm md:text-base
Font Weight
font-sans font-bold tracking-wider
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.
Design Recipes
These curated recipes combine this style with layouts and animations, optimized for specific use cases.