Best For
gothic lolita / lolita fashion / Victorian lace
哥特萝莉风
Victorian lace, black ribbons, crosses and roses in dark elegance -- a dark romantic aesthetic blending Gothic architectural ornamentation with Lolita's exquisite details.
Best For
gothic lolita / lolita fashion / Victorian lace
Primary Move
Use black and dark colors as main background
Watch Out
Do not use bright vivid 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: Gothic Lolita
style_slug: gothic-lolita
style_source: /styles/gothic-lolita
# 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 Gothic Lolita design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Bright vivid colors
- Cute cartoon style
- Modern minimalist design
- Overly large rounded shapes
- Emoji
## Must Follow
- Black dark backgrounds bg-[#0a0a0a], bg-[#1a0a1a]
- Deep purple accents border-[#4a1a4a], text-[#4a1a4a]
- Blood red emphasis border-[#8b1a2a], text-[#8b1a2a]
- Silver white text text-[#e5e5e5]
- Serif fonts font-serif
- Intricate border decorations
## Color Palette
Primary:
- Black: #0a0a0a
- Deep Purple: #4a1a4a
- Blood Red: #8b1a2a
- Silver White: #e5e5e5
## Special Elements
- Lace trim patterns
- Cross decorations
- Rose patterns
- Symmetrical decorative motifs
- Gothic arches
## Animation & Interaction Rules
- Velvet Depth: Hover focuses on slow expansion of deep purple/blood red shadows, conveying velvet texture -- avoid frivolous bouncing.
- Lace Elegance: Interaction duration should be duration-500 to 700, using ease-in-out to maintain refinement and restraint.
- Corset Press: Active uses slight constriction (scale-[0.98]) with enhanced inner shadow, simulating corset-like damped feedback.
- Silver Whisper: Borders and text may slowly reveal silver-white shimmer on hover, enhancing dark luxurious layering.
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use bright vivid colors
- use cute cartoon-style elements
- use modern minimalist design
- use overly rounded shapes
## 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 bright vivid colors
- [ ] do not use cute cartoon-style elements
- [ ] do not use modern minimalist design
- [ ] do not use overly rounded shapesComponent 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
/* Gothic Lolita 全局样式 */
:root {
--gl-black: #0a0a0a;
--gl-purple: #4a1a4a;
--gl-red: #8b1a2a;
--gl-silver: #e5e5e5;
}
/* 蕾丝花边装饰 */
.gl-lace-border {
border-image: repeating-linear-gradient(
90deg,
var(--gl-purple) 0px,
var(--gl-purple) 4px,
transparent 4px,
transparent 8px
) 1;
}
/* 哥特十字架装饰 */
.gl-cross::before {
content: "+";
font-size: 1.2em;
color: var(--gl-red);
margin-right: 0.5em;
}
/* 玫瑰阴影 */
.gl-rose-shadow {
box-shadow:
0 4px 16px rgba(139, 26, 42, 0.3),
inset 0 1px 0 rgba(229, 229, 229, 0.1);
}
/* 暗色渐变 */
.gl-dark-gradient {
background: linear-gradient(
to bottom,
#0a0a0a 0%,
#1a0a1a 50%,
#0a0a0a 100%
);
}
@keyframes gothic-lolita-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes gothic-lolita-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.gothic-lolita-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(74, 26, 74, 0.08);
}
.gothic-lolita-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.gothic-lolita-animate-in {
animation: gothic-lolita-fade-in 0.5s ease-out both;
}
.gothic-lolita-focus { outline: 2px solid var(--gothic-lolita-primary, currentColor); outline-offset: 2px; }
/* Responsive utilities */
@media (prefers-reduced-motion: reduce) {
.gothic-lolita-animate-in {
animation: none;
}
}
@media (min-width: 768px) {
.gothic-lolita-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
}
/* Print styles */
@media print {
.gothic-lolita-gradient,
.gothic-lolita-frosted {
background: none;
backdrop-filter: none;
}
}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
Gothic Lolita is a visual style blending Victorian-era and Gothic aesthetics, originating from Japanese street fashion.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: B - Good
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#e5e5e5 / #0a0a0a | 15.72:1 | ||
| Secondary text on background | /#e5e5e5 / #0a0a0a | 15.72:1 | ||
| Muted text on background | /#4a1a4a / #0a0a0a | 1.45:1 | ||
| Text on secondary background | /#e5e5e5 / #1a0a1a | 15.12:1 | ||
| Secondary text on secondary | /#e5e5e5 / #1a0a1a | 15.12:1 | ||
| Button primary | /#e5e5e5 / #4a1a4a | 10.84:1 | ||
| Text on accent 1 | /#e5e5e5 / #4a1a4a | 10.84:1 | ||
| Alt text on accent 1 | /#e5e5e5 / #4a1a4a | 10.84:1 | ||
| Text on accent 2 | /#e5e5e5 / #8b1a2a | 7.31:1 | ||
| Alt text on accent 2 | /#e5e5e5 / #8b1a2a | 7.31:1 | ||
| Text on accent 3 | /#e5e5e5 / #6b2d5b | 7.75:1 | ||
| Alt text on accent 3 | /#e5e5e5 / #6b2d5b | 7.75:1 |
Readability
Score
77/100
Font Size
text-sm md:text-base
Font Weight
font-serif tracking-wide
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.