Best For
wabi-sabi / wabi sabi design / Japanese minimalism
侘寂风
A digital expression of Japanese Wabi-Sabi aesthetics, celebrating the beauty of imperfection, the elegance of natural aging, and the zen of extreme whitespace, conveyed through ink tones, tea hues, and paper textures.
Best For
wabi-sabi / wabi sabi design / Japanese minimalism
Primary Move
Use warm paper-toned backgrounds bg-[#f7f3ec] bg-[#f2ede4]
Watch Out
Do not use vivid colors or high saturation
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: Wabi-Sabi
style_slug: wabi-sabi
style_source: /styles/wabi-sabi
# 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 designing in Wabi-Sabi style.
- Warm paper-toned backgrounds: #f7f3ec, #f2ede4
- Ink-like text color: #3a3a3a
- Muted natural accents: moss green #8a9a7b, tea brown #b5a78c
- Always use serif fonts (font-serif)
- Extreme whitespace: py-32, large gaps between sections
- Ultra-thin borders: border-[#d4cdc5]/30
- Slow transitions: duration-500 or longer
- No bold colors, no heavy shadows, no decorative elements
- Embrace asymmetry and imperfection
- Think "zen garden" and "ceramic pottery"
Animation & Interaction Rules:
- Absolute Stillness: The core of Wabi-Sabi is tranquility. Absolutely no translate (displacement), scale (scaling), or spring animations. Elements must remain still like stones.
- Shadowless Void: Abandon all box-shadow for modern depth. Layer hierarchy is expressed only through generous whitespace and very faint border lines.
- Dust Breathing: All interactions must be extremely slow. Use duration-1000 or longer transitions (e.g., duration-[1500ms]) with ease-in-out. Let background color deepening look like natural light slowly dimming.
- Ink Fading: On hover, text color should not change abruptly but transition through opacity changes (e.g., from opacity-60 slowly to opacity-100), simulating ink appearing through time.
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use vivid colors or high saturation
- use heavy shadows or thick borders
- densely arrange elements
- use decorative animations or bounce effects
## 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 vivid colors or high saturation
- [ ] do not use heavy shadows or thick borders
- [ ] do not densely arrange elements
- [ ] do not use decorative animations or bounce effectsComponent 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
/* Wabi-Sabi */
:root {
--wabi-bg: #f7f3ec;
--wabi-surface: #f2ede4;
--wabi-text: #3a3a3a;
--wabi-muted: #8a8278;
--wabi-moss: #8a9a7b;
--wabi-tea: #b5a78c;
--wabi-clay: #8b6f4e;
--wabi-border: #d4cdc5;
}
@keyframes wabi-sabi-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes wabi-sabi-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.wabi-sabi-card {
position: relative;
overflow: hidden;
}
.wabi-sabi-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(58, 58, 58, 0.05), transparent);
pointer-events: none;
}
.wabi-sabi-card:hover::before {
opacity: 1;
}
.wabi-sabi-gradient {
background: linear-gradient(135deg, #3a3a3a, #8a9a7b);
}
.wabi-sabi-gradient-text {
background: linear-gradient(135deg, #3a3a3a, #8a9a7b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.wabi-sabi-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(58, 58, 58, 0.08);
}
.wabi-sabi-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.wabi-sabi-animate-in {
animation: wabi-sabi-fade-in 0.5s ease-out both;
}
.wabi-sabi-focus { outline: 2px solid var(--wabi-sabi-primary, currentColor); outline-offset: 2px; }
/* Responsive utilities */
@media (prefers-reduced-motion: reduce) {
.wabi-sabi-animate-in {
animation: none;
}
}
@media (min-width: 768px) {
.wabi-sabi-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
}
/* Print styles */
@media print {
.wabi-sabi-gradient,
.wabi-sabi-frosted {
background: none;
backdrop-filter: none;
}
}Compatible Layout Patterns
The following layout patterns pair well with the Wabi-Sabi style.
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
Wabi-Sabi is the deepest philosophical concept in Japanese traditional aesthetics.
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 | /#3a3a3a / #f7f3ec | 10.28:1 | ||
| Secondary text on background | /#8a8278 / #f7f3ec | 3.42:1 | ||
| Muted text on background | /#b5a78c / #f7f3ec | 2.14:1 | ||
| Text on secondary background | /#3a3a3a / #f2ede4 | 9.75:1 | ||
| Secondary text on secondary | /#8a8278 / #f2ede4 | 3.25:1 | ||
| Text on accent 1 | /#3a3a3a / #8a9a7b | 3.79:1 | ||
| Alt text on accent 1 | /#8a8278 / #8a9a7b | 1.26:1 | ||
| Text on accent 2 | /#3a3a3a / #b5a78c | 4.8:1 | ||
| Alt text on accent 2 | /#8a8278 / #b5a78c | 1.6:1 | ||
| Text on accent 3 | /#3a3a3a / #8b6f4e | 2.43:1 | ||
| Alt text on accent 3 | /#8a8278 / #8b6f4e | 1.24:1 |
Readability
Score
80/100
Font Size
text-sm md:text-base
Font Weight
font-serif font-light 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.