Best For
赛博动漫 / HUD / 全息
Cyber Anime
Fusing cyberpunk sci-fi UI with anime aesthetics, featuring HUD overlays, holographic projection panels, mecha-frame borders, and multi-layer neon glow effects for a futuristic anime interface style.
Best For
赛博动漫 / HUD / 全息
Primary Move
Use HUD corner frame decorations on major containers (angled bracket corners)
Watch Out
Never use soft pastel colors or natural organic tones
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#7c3aed
Secondary
#0f0f1a
Accent 1
#06d6a0
Accent 2
#ff006e
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 Anime
style_slug: cyber-anime
style_source: /styles/cyber-anime
# 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 Anime design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Soft pastel colors (no light pink, baby blue, etc.)
- Serif fonts of any kind
- Natural organic colors (brown, beige, olive, etc.)
- rounded-full on buttons or containers
- White or light backgrounds as primary surfaces
- Standard shadow-sm/md/lg (only neon glow shadows)
## Must Follow
- Dark background: bg-[#0f0f1a] as primary surface
- Primary purple: #7c3aed for key elements with multi-layer glow
- Cyan-green accent: #06d6a0 for highlights, borders, and HUD frames
- Hot pink accent: #ff006e for alerts and emphasis
- HUD corner frame decorations on major containers
- Vertical scan line overlay on holographic panels
- Mecha-style angled corners via clip-path on cards and panels
- Monospace terminal text for data readouts
- Hexagonal grid background pattern
- Multi-layer neon glow: shadow-[0_0_Xpx_rgba(...),0_0_Ypx_rgba(...)]
## Animation & Interaction Rules
- Motion must feel like cockpit controls: quick and precise, usually 160-280ms with ease-out
- Hover states should amplify HUD feedback through slight lift (1-2px), stronger neon glow, and brighter bracket borders
- Active states should feel tactile: brief press-down (1-2px or scale to 0.97-0.99) with compressed glow
- Use directional holographic sweeps or scan pulses triggered by hover/focus; keep them short and state-based
- Avoid bouncy spring motion, long cinematic fades, or decorative animations that reduce data legibility
## Color Palette
Primary:
- Deep Purple: #7c3aed
- Dark Background: #0f0f1a
- Cyan-Green: #06d6a0
- Hot Pink: #ff006e
- Sky Blue: #38bdf8
- Light Text: #e0e0ff
## Unique Elements
- HUD corner frame decorations (bracket-style corners)
- Holographic vertical scan line texture overlays
- Mecha-style angular clip-path panel borders
- Neural network data visualization patterns
- Terminal-style data readout text blocksComponent Templates
Button with vertical scan line texture and multi-layer neon glow, styled like a cockpit control
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 Anime Global Styles */
:root {
--ca-purple: #7c3aed;
--ca-dark: #0f0f1a;
--ca-cyan: #06d6a0;
--ca-pink: #ff006e;
--ca-blue: #38bdf8;
--ca-text: #e0e0ff;
}
/* Multi-layer neon glow */
.ca-glow {
box-shadow: 0 0 10px rgba(124, 58, 237, 0.3),
0 0 20px rgba(124, 58, 237, 0.15),
0 0 40px rgba(124, 58, 237, 0.05);
}
/* Vertical scan line overlay */
.ca-scanlines::after {
content: "";
position: absolute;
inset: 0;
background: repeating-linear-gradient(
90deg,
transparent,
transparent 2px,
rgba(255, 255, 255, 0.02) 2px,
rgba(255, 255, 255, 0.02) 3px
);
pointer-events: none;
}
/* Holographic shimmer */
.ca-holo {
background: linear-gradient(
135deg,
rgba(124, 58, 237, 0.1),
rgba(6, 214, 160, 0.1),
rgba(56, 189, 248, 0.1)
);
}
/* Hexagonal grid background */
.ca-hex-grid {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0 L60 15 L60 37 L30 52 L0 37 L0 15 Z' fill='none' stroke='%237c3aed' stroke-width='0.4' opacity='0.08'/%3E%3C/svg%3E");
}
/* HUD corner frame */
.ca-hud-frame {
position: relative;
}
.ca-hud-frame::before,
.ca-hud-frame::after {
content: "";
position: absolute;
width: 16px;
height: 16px;
border-color: rgba(6, 214, 160, 0.5);
}
.ca-hud-frame::before {
top: 0; left: 0;
border-left: 2px solid;
border-top: 2px solid;
}
.ca-hud-frame::after {
bottom: 0; right: 0;
border-right: 2px solid;
border-bottom: 2px solid;
}
/* Mecha angled corners */
.ca-mecha-clip {
clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.cyber-anime-filter { filter: brightness(1.05) contrast(1.02); }
.cyber-anime-hover-lift { transition: transform 0.3s ease; }
.cyber-anime-hover-lift:hover { transform: translateY(-2px); }
.cyber-anime-focus { outline: 2px solid var(--cyber-anime-primary, currentColor); outline-offset: 2px; }
/* Additional techniques */
@keyframes cyber-anime-shimmer { from { background-position: -200% 0; } to { background-position: 200% 0; } }
.cyber-anime-glass { backdrop-filter: blur(8px) saturate(150%); -webkit-backdrop-filter: blur(8px) saturate(150%); }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 Anime fuses cyberpunk HUD interfaces with anime's expressive power. Every panel is a data terminal, every border a mecha frame.
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 | /#e0e0ff / #0f0f1a | 14.75:1 | ||
| Secondary text on background | /#06d6a0 / #0f0f1a | 10.09:1 | ||
| Muted text on background | /#e0e0ff / #0f0f1a | 14.75:1 | ||
| Text on secondary background | /#e0e0ff / #0f0f1a | 14.75:1 | ||
| Secondary text on secondary | /#06d6a0 / #0f0f1a | 10.09:1 | ||
| Button primary | /#ffffff / #7c3aed | 5.7:1 | ||
| Text on accent 1 | /#e0e0ff / #7c3aed | 4.42:1 | ||
| Alt text on accent 1 | /#06d6a0 / #7c3aed | 3.02:1 | ||
| Text on accent 2 | /#e0e0ff / #06d6a0 | 1.46:1 | ||
| Alt text on accent 2 | /#06d6a0 / #06d6a0 | 1:1 | ||
| Text on accent 3 | /#e0e0ff / #ff006e | 2.97:1 | ||
| Alt text on accent 3 | /#06d6a0 / #ff006e | 2.03:1 | ||
| Text on accent 4 | /#e0e0ff / #38bdf8 | 1.66:1 | ||
| Alt text on accent 4 | /#06d6a0 / #38bdf8 | 1.14:1 |
Readability
Score
90/100
Font Size
text-sm md:text-base
Font Weight
font-sans font-bold uppercase tracking-widest
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.