Best For
Ma / 侘寂 / 留白
Japanese Fresh
Centered on Ma (space) philosophy, wabi-sabi aesthetics, and extreme breathing room, using hairline borders, botanical line-drawing accents, and minimal warm neutral colors to create a serene, healing design experience.
Best For
Ma / 侘寂 / 留白
Primary Move
Use extreme whitespace (py-32, py-40) between sections -- Ma is the primary design tool
Watch Out
Never use bold or heavy font weights (font-bold, font-semibold)
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#64b5f6
Secondary
#fafaf8
Accent 1
#98d8c8
Accent 2
#ffb7c5
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: Japanese Fresh
style_slug: japanese-fresh
style_source: /styles/japanese-fresh
# 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 Japanese Fresh design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Heavy borders (border-2 or thicker)
- Neon or high-saturation colors
- Dark or black backgrounds
- Bold/heavy font weights (font-bold, font-semibold, font-black)
- Sharp corners (rounded-none, rounded-sm)
- Uppercase text
- Visible shadows (shadow-lg, shadow-xl)
- Crowded layouts without extreme whitespace
## Must Follow
- Rice-white background: bg-[#fafaf8] with optional linen texture
- Ma-based extreme whitespace: py-32+ between sections (this is THE core principle)
- Hairline borders only: border with opacity-30/40, warm neutral #d4d4cf
- Font weight: font-extralight or font-light exclusively
- Single botanical SVG line drawing accent per section
- Bottom-line only inputs with floating labels
- No shadows anywhere -- forms float in whitespace
- Slow transitions: duration-500 for meditative feel
- Warm neutral colors: #d4d4cf borders, #b0b8c4 muted text
## Color Palette
Primary:
- Sky Blue: #64b5f6
- Rice White: #fafaf8
- Mint Green: #98d8c8
- Gentle Pink: #ffb7c5
- Powder Blue: #b8d4e3
- Text: #4a5568
- Secondary text: #7a8a9e
- Muted: #b0b8c4
- Border: #d4d4cf
## Unique Elements
- Ma-based extreme whitespace (py-32+ sections)
- Hairline 0.5px borders at 30% opacity
- Botanical line-drawing SVG accents (one per section)
- Bottom-line only input fields with floating labels
- Linen/paper texture background pattern
## Animation & Interaction Rules
- Weightless Float: Hover allows only extremely light upward float (about 0.5px), avoiding heavy shadows and large displacement.
- Airy Transitions: Color changes use duration-500 + ease-in-out, appearing slowly like morning mist.
- Subtle Focus: Form focus only adjusts hairline border color, no thick rings or strong glow.
- Tactile Click: Active state prioritizes subtle opacity and background layer adjustments, no obvious scaling.Component Templates
Button with hairline border, huge padding, and barely-visible hover state
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
/* Japanese Fresh Global Styles */
:root {
--jf-sky: #64b5f6;
--jf-rice: #fafaf8;
--jf-mint: #98d8c8;
--jf-pink: #ffb7c5;
--jf-powder: #b8d4e3;
--jf-text: #4a5568;
--jf-muted: #b0b8c4;
--jf-border: #d4d4cf;
}
/* Linen paper texture */
.jf-linen {
background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='6' height='6' fill='%23fafaf8'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23e8e8e4' opacity='0.12'/%3E%3Crect x='3' y='3' width='1' height='1' fill='%23e8e8e4' opacity='0.08'/%3E%3C/svg%3E");
}
/* Hairline divider */
.jf-divider {
height: 0.5px;
background: var(--jf-border);
opacity: 0.4;
}
/* Bottom-line input focus */
.jf-input-underline {
border: none;
border-bottom: 1px solid var(--jf-border);
border-radius: 0;
background: transparent;
}
.jf-input-underline:focus {
border-bottom-color: var(--jf-sky);
box-shadow: none;
outline: none;
}
/* Ma-based section spacing */
.jf-ma-section {
padding-top: 8rem;
padding-bottom: 8rem;
}
/* Botanical SVG accent */
.jf-botanical {
opacity: 0.12;
stroke: var(--jf-muted);
fill: none;
stroke-width: 0.7;
}
@keyframes japanese-fresh-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes japanese-fresh-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.japanese-fresh-card {
position: relative;
overflow: hidden;
}
.japanese-fresh-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(100, 181, 246, 0.05), transparent);
pointer-events: none;
}
.japanese-fresh-card:hover::before {
opacity: 1;
}
.japanese-fresh-gradient {
background: linear-gradient(135deg, #64b5f6, #98d8c8);
}
.japanese-fresh-gradient-text {
background: linear-gradient(135deg, #64b5f6, #98d8c8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.japanese-fresh-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(100, 181, 246, 0.08);
}
.japanese-fresh-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.japanese-fresh-animate-in {
animation: japanese-fresh-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
Japanese Fresh embodies Ma (space between) and wabi-sabi (beauty in imperfection). Design is not about what you add, but what you allow to breathe.
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 | /#4a5568 / #fafaf8 | 7.2:1 | ||
| Secondary text on background | /#7a8a9e / #fafaf8 | 3.37:1 | ||
| Muted text on background | /#b0b8c4 / #fafaf8 | 1.91:1 | ||
| Text on secondary background | /#4a5568 / #ffffff | 7.53:1 | ||
| Secondary text on secondary | /#7a8a9e / #ffffff | 3.53:1 | ||
| Button primary | /#ffffff / #64b5f6 | 2.21:1 | ||
| Text on accent 1 | /#4a5568 / #64b5f6 | 3.4:1 | ||
| Alt text on accent 1 | /#7a8a9e / #64b5f6 | 1.59:1 | ||
| Text on accent 2 | /#4a5568 / #98d8c8 | 4.66:1 | ||
| Alt text on accent 2 | /#7a8a9e / #98d8c8 | 2.18:1 | ||
| Text on accent 3 | /#4a5568 / #ffb7c5 | 4.6:1 | ||
| Alt text on accent 3 | /#7a8a9e / #ffb7c5 | 2.15:1 | ||
| Text on accent 4 | /#4a5568 / #b8d4e3 | 4.86:1 | ||
| Alt text on accent 4 | /#7a8a9e / #b8d4e3 | 2.28:1 |
Readability
Score
80/100
Font Size
text-sm md:text-base
Font Weight
font-sans font-extralight text-[#4a5568] 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.