Best For
Art Nouveau / Art Nouveau website / Mucha style
新艺术运动风
Organic curve aesthetics from the late 19th century, characterized by flowing vine patterns, natural floral elements, Mucha-style poster decorations, and elegant serif typography -- conveying the harmony of nature and art.
Best For
Art Nouveau / Art Nouveau website / Mucha style
Primary Move
Use organic curves and flowing lines
Watch Out
Do not use rigid right angles and geometric shapes
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: Art Nouveau
style_slug: art-nouveau
style_source: /styles/art-nouveau
# 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 an Art Nouveau design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Rigid right angles and sharp geometric shapes
- Neon or high-saturation modern colors
- Sans-serif fonts for headings
- Dark/black backgrounds
- Short duration-150 or duration-200
- Hard-edge shadows (shadow-[Xpx_Ypx_0px_color])
## Must Follow
- Use organic curves and rounded corners rounded-full, rounded-3xl
- Deep green #2d5016 as primary, gold #c9a227 as accent
- Ivory white #f5f0e1 as background
- Use font-serif serif fonts
- Add soft shadows and glow effects
## Animation & Interaction Rules
- Organic Flow: Animations must flow naturally like plant growth. Use duration-500 or duration-700 with smooth ease-in-out.
- Soft Glow: Hover glow should expand softly outward (shadow grows from small to large, shallow to deep), avoiding rigid displacement.
- Decorative Flourishes: Decorative elements produce slight scaling or rotation on hover (scale(1.1) rotate(5deg)), like flowers blooming.
- Radial Highlight: Cards produce corner glow via radial-gradient pseudo-element on hover (opacity 0 -> 100).
- Gentle Float: Cards float slightly upward on hover -translate-y-1, paired with shadow expansion.
## Color Palette
Primary:
- Deep Green: #2d5016
- Gold: #c9a227
- Ivory White: #f5f0e1
- Wisteria: #8b6db5
## Special Elements
- Organic curve SVG decorations
- Vine and floral patterns
- Gold borders and glow
- Elegant gradient transitions
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use rigid right angles and geometric shapes
- use neon or high-saturation modern colors
- use rough undecorated design
- use modern sans-serif fonts for headings
- use short abrupt duration-150 or duration-200
- use hard-edge shadows (shadow-[Xpx_Ypx_0])
## 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 rigid right angles and geometric shapes
- [ ] do not use neon or high-saturation modern colors
- [ ] do not use rough undecorated design
- [ ] do not use modern sans-serif fonts for headings
- [ ] do not use short abrupt duration-150 or duration-200Component 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
/* Art Nouveau 全局样式 */
:root {
--an-green: #2d5016;
--an-gold: #c9a227;
--an-ivory: #f5f0e1;
--an-wisteria: #8b6db5;
}
/* 有机曲线装饰 */
.an-vine-border {
border-image: linear-gradient(
135deg,
var(--an-gold) 0%,
var(--an-green) 50%,
var(--an-gold) 100%
) 1;
}
/* 金色发光效果 */
.an-gold-glow {
box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
transition: box-shadow 0.7s ease-in-out;
}
.an-gold-glow:hover {
box-shadow: 0 0 35px rgba(201, 162, 39, 0.5);
}
/* 花卉背景纹理 */
.an-floral-bg {
background-image: radial-gradient(
circle at 20% 80%,
rgba(139, 109, 181, 0.1) 0%,
transparent 50%
),
radial-gradient(
circle at 80% 20%,
rgba(201, 162, 39, 0.1) 0%,
transparent 50%
);
}
/* 装饰元素绽放动画 */
.an-bloom {
transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}
.an-bloom:hover {
transform: scale(1.1) rotate(5deg);
}
/* 衬线标题 */
.an-heading {
font-family: Georgia, "Times New Roman", serif;
letter-spacing: 0.05em;
}
@keyframes art-nouveau-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes art-nouveau-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.art-nouveau-card {
position: relative;
overflow: hidden;
}
.art-nouveau-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), transparent);
pointer-events: none;
}
.art-nouveau-card:hover::before {
opacity: 1;
}
.art-nouveau-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(45, 80, 22, 0.08);
}
.art-nouveau-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.art-nouveau-animate-in {
animation: art-nouveau-fade-in 0.5s ease-out both;
}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
Art Nouveau is an international art movement from the late 19th to early 20th century, drawing inspiration from organic forms in nature and pushing decorative art to its zenith.
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 | /#2d5016 / #f5f0e1 | 8.12:1 | ||
| Secondary text on background | /#c9a227 / #f5f0e1 | 2.12:1 | ||
| Muted text on background | /#2d5016 / #f5f0e1 | 8.12:1 | ||
| Text on secondary background | /#2d5016 / #e8dcc8 | 6.83:1 | ||
| Secondary text on secondary | /#c9a227 / #e8dcc8 | 1.79:1 | ||
| Button primary | /#f5f0e1 / #2d5016 | 8.12:1 | ||
| Text on accent 1 | /#2d5016 / #2d5016 | 1:1 | ||
| Alt text on accent 1 | /#c9a227 / #2d5016 | 3.82:1 | ||
| Text on accent 2 | /#2d5016 / #c9a227 | 3.82:1 | ||
| Alt text on accent 2 | /#c9a227 / #c9a227 | 1:1 | ||
| Text on accent 3 | /#2d5016 / #8b6db5 | 2.18:1 | ||
| Alt text on accent 3 | /#c9a227 / #8b6db5 | 1.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.