HomeStylesTemplates
StyleKit
StylesTemplates
  1. Home
  2. /Styles
  3. /Ukiyo-e Digital
Style Catalog/浮世绘数字风

浮世绘数字风

Ukiyo-e Digital

D
46/100Poor

Inspired by Japanese ukiyo-e woodblock prints, featuring indigo, vermilion, and gold leaf as primary colors, flat design, bold outlines, wave patterns, and Hokusai-style composition -- blending traditional Eastern aesthetics into modern digital interfaces.

浮世绘木版画北斋波浪和风扁平东方美学retrovintagenostalgic
View Full Showcase →Templates

Best For

浮世绘 / 木版画 / 北斋

Primary Move

Use indigo, vermilion, and gold leaf as primary colors

Watch Out

Do not use gradient shadows or soft blur

Showcase Entry

Live preview of the showcase page. Click to explore the full experience.

View Full Showcase →

Color Palette

Primary

#1a3055

Secondary

#f5f0e1

Accent 1

#d4553a

Accent 2

#c9a227

Accent 3

#2a5a8c

Accent 4

#747800

AI ImplementationComponent PreviewReadinessExportsRatings & Feedback

AI Implementation

Copy the Hard Prompt first, then use the spec when needed

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.

Hard Prompt

Use this by default: copy it, append the concrete requirement, and let AI generate consistent production UI.

When to use

  • -When AI should generate UI directly
  • -When repeated outputs must stay consistent
  • -When style drift is the main risk

How to use

  • -Copy the full prompt
  • -Append the concrete requirement
  • -Review against forbidden rules and UI states
STYLEKIT_STYLE_REFERENCE
style_name: Ukiyo-e Digital
style_slug: ukiyo-e-digital
style_source: /styles/ukiyo-e-digital

# 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 Ukiyo-e Digital design style frontend development expert. All generated code must strictly follow these constraints:

## Absolutely Forbidden

- Gradient shadows or soft blur effects
- Transparency and glassmorphism
- Large rounded corners or circular buttons
- Neon or high-saturation modern colors

## Must Follow

- Indigo #1a3055 as primary, vermilion #d4553a as accent
- Rice white #f5f0e1 as background (washi paper texture)
- Use hard-edge shadows shadow-[Xpx_Ypx_0px_color]
- Use small rounded corners rounded-sm or sharp corners
- Bold borders border-2 for woodblock outline feel

## Color Palette

Primary:
- Indigo: #1a3055
- Vermilion: #d4553a
- Gold Leaf: #c9a227
- Rice White: #f5f0e1

## Special Elements

- Wave pattern SVG decorations
- Hard-edge shadows simulating woodblock print texture
- Vermilion seal/stamp effect decorations
- Large flat color blocks

## Animation & Interaction Rules

- Woodblock Offset: Hover must use hard-edge offset shadow (no blur) + slight displacement, simulating woodblock misregistration overprint.
- Stamp Press: Active instantly cancels shadow and displacement, switching to vermilion border/text feedback to represent stamp pressing.
- Zero Fluidity: Use duration-75 ease-linear or transition-none, rejecting modern silky-smooth animations.
- Motif Reveal: Traditional patterns like waves/clouds can use opacity hard-cut on hover to reinforce layout hierarchy.

Component Templates

Component Preview

按钮

浮世绘数字风按钮

Frontend Readiness

Dark Mode, States, Motion, and Accessibility

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%

Missing

UI States

79%

Partial

Motion

70%

Partial

A11y

70%

Partial

Performance

35%

Fallback

Key State Coverage

light
HoverFocus VisibleDisabledLoadingEmptyErrorSuccess

Button

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

Implementation Notes

  • No curated dark-mode contract exists yet.
  • Check contrast in both light and dark modes.
  • Check heavy shadows, blur, large media, and scroll-linked effects manually.
  • No style-specific performance cost profile has been curated yet.
Global Styles

Global CSS

css
/* Ukiyo-e Digital 全局样式 */

:root {
  --ue-indigo: #1a3055;
  --ue-vermilion: #d4553a;
  --ue-gold: #c9a227;
  --ue-rice: #f5f0e1;
}

/* 硬边阴影 */
.ue-shadow {
  box-shadow: 4px 4px 0px var(--ue-indigo);
}

/* 波浪纹装饰 */
.ue-wave-bg {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 Q50,0 100,25 T200,25' fill='none' stroke='%231a3055' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 200px 50px;
  background-repeat: repeat;
}

/* 和纸质感 */
.ue-washi {
  background-color: var(--ue-rice);
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(26, 48, 85, 0.02) 0%,
    transparent 80%
  );
}

/* 朱印效果 */
.ue-stamp {
  border: 2px solid var(--ue-vermilion);
  padding: 4px 8px;
  color: var(--ue-vermilion);
  font-weight: bold;
}
@keyframes ukiyo-e-digital-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ukiyo-e-digital-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.ukiyo-e-digital-card {
  position: relative;
  overflow: hidden;
}

.ukiyo-e-digital-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, rgba(26, 48, 85, 0.05), transparent);
  pointer-events: none;
}

.ukiyo-e-digital-card:hover::before {
  opacity: 1;
}

.ukiyo-e-digital-frosted {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(26, 48, 85, 0.08);
}

.ukiyo-e-digital-accent-corner {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}

.ukiyo-e-digital-animate-in {
  animation: ukiyo-e-digital-fade-in 0.5s ease-out both;
}

IDE Integration

IDE Configuration Export

Download configuration files for AI coding assistants to generate code in this style.

Style Pack

Export 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

Design Philosophy

Ukiyo-e Digital transforms Edo-period woodblock print art into a modern digital design language, preserving its distinctive flat perspective and color-blocking techniques.

Accessibility

Accessibility Score

WCAG 2.1 compliance analysis based on color contrast and typography readability.

46

Overall Score

Grade: D - Poor

Contrast Ratios

Score: 28/100Average Ratio: 4.12:1
AA FailAAA Fail
ContextColorsRatioAAAAA
Text on background
/#1a3055 / #f5f0e1
11.54:1
Secondary text on background
/#d4553a / #f5f0e1
3.57:1
Muted text on background
/#1a3055 / #f5f0e1
11.54:1
Text on secondary background
/#1a3055 / #1a3055
1:1
Secondary text on secondary
/#d4553a / #1a3055
3.23:1
Button primary
/#f5f0e1 / #d4553a
3.57:1
Text on accent 1
/#1a3055 / #d4553a
3.23:1
Alt text on accent 1
/#d4553a / #d4553a
1:1
Text on accent 2
/#1a3055 / #c9a227
5.43:1
Alt text on accent 2
/#d4553a / #c9a227
1.68:1
Text on accent 3
/#1a3055 / #2a5a8c
1.84:1
Alt text on accent 3
/#d4553a / #2a5a8c
1.76:1

Readability

Score

87/100

Font Size

text-sm md:text-base

Font Weight

font-bold tracking-wider

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.

StyleKit

A curated web design style library to help AI generate better-looking websites.

Navigation

StylesTemplatesGuideBlogChangelog

Resources

UI Design PromptsLanding Page PromptsDashboard PromptsTailwind UI PromptsDark Mode UI PromptsGitHub Repository

Stay Updated

By subscribing, you agree to our Privacy Policy and Terms.


Support Maintenance

If StyleKit helps your workflow, voluntary support helps cover servers, domains, and ongoing upkeep.

Scan to support / View all options

(c) 2026 StyleKit. Open source project.

AboutContactPrivacyTermsBuilt with the Editorial style
Stylekit前端样式库stylekit.top陕ICP备2025065501号-3