Best For
luxury fashion / lookbook / maison website
奢华画册
The couture aesthetic of a fashion maison's digital flagship: a porcelain ground, ink-noir type, one muted gold; oversized high-contrast Didone serif display, a full-bleed silk-motion film hero, and a lookbook grid with hover image reveals. Absence is the luxury, restraint is the polish, numerals become art -- a house that charges four thousand euros for a coat.
Best For
luxury fashion / lookbook / maison website
Primary Move
Porcelain #F7F5F1 ground, ink #141210 type, one muted gold #9A7B4F accent
Watch Out
Never use radius, shadow, or gradient (each one cheapens it -- use square corners and hairlines)
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#141210
Secondary
#F7F5F1
Accent 1
#9A7B4F
Accent 2
#E8E3DB
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: Luxe Lookbook
style_slug: luxe-lookbook
style_source: /styles/luxe-lookbook
# 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
# Luxe Lookbook Design System
You are an expert frontend developer specializing in fashion-maison lookbook interfaces. Generate all code strictly following these specifications.
## Style Identity
- **Name**: Luxe Lookbook
- **Essence**: A digital flagship as a moving lookbook; absence is the luxury, one gold accent, numerals as art
- **Mood**: Couture, editorial, restrained, quietly expensive
- **Inspiration**: Celine, The Row, Jacquemus campaign sites; printed fashion lookbooks
---
## Forbidden
| Pattern | Reason |
|---------|--------|
| Radius, shadow, or gradient decoration | Each one cheapens it; use square corners and hairlines |
| Gold used in many places | The single accent lands only on kicker / focus / one CTA |
| font-bold to fake weight | Thickness comes from the Didone serif's own contrast |
| Crowded layout | Whitespace is the luxury |
| Video as the LCP dependency / no poster | Blank first paint, LCP blowup |
| Fast / jump-cut showy motion | Motion is silk falling, not an effect exploding |
## Required
### Palette
- Porcelain ground #F7F5F1 / stone surface #E8E3DB / ink text #141210 / taupe body #6B6259
- One muted gold #9A7B4F: kicker, hairline focus, a single primary CTA
- Square corners everywhere (rounded-none); hairline rules border-[#141210]/20
### Typography
- Display uses the oversized high-contrast Didone serif (Playfair Display); titles clamp() up to ~8rem, line-height ~0.92
- Body and labels use a neutral sans; labels are uppercase at 0.3em tracking (tracking-[0.3em])
- Weight comes from the typeface, never font-bold; generous line-height
### Silk-Motion Video Hero (poster = LCP)
- The video must carry a poster (AVIF first) as the LCP; muted loop playsInline preload="none"
- Play only in view via IntersectionObserver, pause offscreen:
```js
const io = new IntersectionObserver(([e]) => {
if (e.isIntersecting) { v.load(); v.play().catch(() => {}); }
else { v.pause(); }
}, { threshold: 0.25 });
io.observe(v);
```
- Scrim text over the film with a gradient darkening for 4.5:1
- Explicit aspect-ratio / h-screen to prevent CLS
### Lookbook Grid (hover reveal)
- Portrait 4:5 plates via <picture>: `<source srcSet=".avif" type="image/avif"><source srcSet=".webp" type="image/webp">`
- Lazy-load loading="lazy" decoding="async" with an explicit aspect-[4/5]
- Hover uses transform/opacity only: group-hover:scale-[1.04] (duration-700 ease) plus a caption rise
- Keyboard-focusable (focus-within reveals too)
### Fallbacks
- prefers-reduced-motion / Save-Data: do not autoplay, show the poster still, offer a play button
- Mobile may show poster only
## Self-Verification Checklist
- [ ] Square corners everywhere; no radius, shadow, or gradient decoration
- [ ] Gold appears in only a very few places
- [ ] Titles set in the Didone serif, ample whitespace, no font-bold
- [ ] Video poster is the LCP, preload=none, play only in view, pause offscreen
- [ ] Lookbook images use <picture> AVIF+WebP, explicit 4:5, lazy, hover-transform reveal
- [ ] reduced-motion / Save-Data fall back to the poster still
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use radius, shadow, or gradient (each one cheapens it -- use square corners and hairlines)
- spread the gold around (the single accent lands only on kicker / focus / one CTA)
- fake weight with font-bold (thickness comes from the Didone serif's own contrast)
- crowd the layout (whitespace is luxury, density is cheap)
- make the video the LCP dependency or omit the poster (blank first paint, LCP blowup)
- use fast or jump-cut showy motion (motion is silk falling, not an effect exploding)
## 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
- [ ] never use radius, shadow, or gradient (each one cheapens it -- use square corners and hairlines)
- [ ] never spread the gold around (the single accent lands only on kicker / focus / one CTA)
- [ ] never fake weight with font-bold (thickness comes from the Didone serif's own contrast)
- [ ] never crowd the layout (whitespace is luxury, density is cheap)
- [ ] never make the video the LCP dependency or omit the poster (blank first paint, LCP blowup)Use it in your workflow
Drop this style's theme into an existing shadcn project with one command.
npx shadcn add https://www.stylekit.top/r/luxe-lookbook.jsonContributors can build the unpublished CLI from a local checkout.
pnpm --filter stylekit-cli build && node packages/cli/dist/index.js add luxe-lookbookContributors can preview Luxe Lookbook through the repository-local MCP package.
pnpm --filter stylekit-mcp build && node packages/mcp/dist/index.jsComponent Templates
Squared ink CTA and a hairline outline
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
/* Luxe Lookbook Global Styles */
:root {
--ll-porcelain: #F7F5F1;
--ll-stone: #E8E3DB;
--ll-ink: #141210;
--ll-gold: #9A7B4F;
--ll-taupe: #6B6259;
--ll-hairline: rgba(20, 18, 16, 0.2);
--ll-serif: "Playfair Display", "Times New Roman", Georgia, serif;
}
/* Load the Didone display face from the CN mirror */
@import url("https://fonts.loli.net/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..700&display=swap");
.ll-display {
font-family: var(--ll-serif);
letter-spacing: -0.01em;
line-height: 0.95;
}
/* Oversized editorial title */
.ll-hero-title {
font-family: var(--ll-serif);
font-size: clamp(3rem, 12vw, 8rem);
line-height: 0.92;
}
/* Airy uppercase label */
.ll-label {
text-transform: uppercase;
letter-spacing: 0.3em;
font-size: 0.75rem;
color: var(--ll-gold);
}
/* Hairline rule */
.ll-rule {
border: 0;
border-top: 1px solid var(--ll-hairline);
}
/* Full-bleed film cover */
.ll-cover {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
/* Readability scrim over the film */
.ll-scrim {
background: linear-gradient(to top, rgba(20,18,16,0.5), rgba(20,18,16,0) 55%, rgba(20,18,16,0.2));
}
/* Lookbook plate: slow reveal on hover, transform/opacity only */
.ll-plate img {
transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ll-plate:hover img,
.ll-plate:focus-within img {
transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
.ll-plate img { transition: none; }
.ll-plate:hover img,
.ll-plate:focus-within img { transform: 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
The luxe-lookbook creed: luxury is subtraction, not addition. A true maison never shouts -- it speaks through negative space, through restraint, through letting a single garment own the whole screen. The digital flagship is a lookbook that moves: the image is the subject, the words are a whisper, the gold lands in exactly one place.
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 | /#141210 / #F7F5F1 | 17.16:1 | ||
| Secondary text on background | /#6B6259 / #F7F5F1 | 5.48:1 | ||
| Muted text on background | /#141210 / #F7F5F1 | 17.16:1 | ||
| Text on secondary background | /#141210 / #E8E3DB | 14.63:1 | ||
| Secondary text on secondary | /#6B6259 / #E8E3DB | 4.68:1 | ||
| Button primary | /#F7F5F1 / #141210 | 17.16:1 | ||
| Text on accent 1 | /#141210 / #9A7B4F | 4.73:1 | ||
| Alt text on accent 1 | /#6B6259 / #9A7B4F | 1.51:1 |
Readability
Score
80/100
Font Size
text-base md:text-lg
Font Weight
font-serif text-[#141210] tracking-tight
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.