Best For
拟物 / 写实 / 纹理
Skeuomorphism
A digital design style that simulates real-world objects through textures, lighting, and materials to mimic physical items, bringing familiarity and intuitive experiences.
Best For
拟物 / 写实 / 纹理
Primary Move
Use real material textures (leather, wood, metal)
Watch Out
Do NOT use flat solid color blocks
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#8b7355
Secondary
#d4c4a8
Accent 1
#c9a227
Accent 2
#5c4033
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: Skeuomorphism
style_slug: skeuomorphism
style_source: /styles/skeuomorphism
# 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 Skeuomorphism design style frontend development expert. All generated code must strictly follow these constraints:
## Absolute Prohibitions
- Using flat solid color blocks
- Omitting shadow and highlight effects
- Using overly simplified icons
- Ignoring material and texture details
## Must Follow
- Gradient backgrounds bg-gradient-to-b from-gray-100 to-gray-300
- Complex shadows shadow-[0_4px_8px_rgba(0,0,0,0.3),inset_0_1px_0_rgba(255,255,255,0.8)]
- Border layers border border-gray-400
- Moderate radii rounded-lg
- Press feedback active:translate-y-[1px]
## Color Palette
- Use natural material tones
- Leather brown: #8b7355
- Wood beige: #d4c4a8
- Metal silver: #c0c0c0
- Paper white: #f5f5dc
## Light & Shadow Principles
- Top highlight (inset 0 1px 0 rgba(255,255,255,0.8))
- Bottom dark edge (inset 0 -1px 0 rgba(0,0,0,0.1))
- Outer drop shadow (0 4px 8px rgba(0,0,0,0.3))
## Animation & Interaction Rules
- Tactile Resistance: Active state uses short press and tighter outer shadow, simulating key damping, no bouncy scaling.
- Fixed Illuminant: Top highlight and bottom dark edge remain stable in hover and active, ensuring light source always comes from above.
- Texture Shimmer: Material layer allows slight background-position shift, expressing light changes on brushed metal or leather texture.
- Embossed Focus: Input focus prioritizes deepening inset shadow rather than strong outer glow outline.Component 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
/* Skeuomorphism 全局样式 */
:root {
--skeu-leather: #8b7355;
--skeu-wood: #d4c4a8;
--skeu-metal: #c0c0c0;
--skeu-paper: #f5f5dc;
}
/* 金属质感按钮 */
.skeu-metal-button {
background: linear-gradient(180deg, #e8e8e8 0%, #c0c0c0 50%, #a8a8a8 100%);
border: 1px solid #888;
box-shadow:
0 4px 8px rgba(0,0,0,0.3),
inset 0 1px 0 rgba(255,255,255,0.8),
inset 0 -1px 0 rgba(0,0,0,0.2);
}
/* 凹陷效果 */
.skeu-inset {
box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), inset 0 -1px 0 rgba(255,255,255,0.5);
}
/* 凸起效果 */
.skeu-raised {
box-shadow: 0 4px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.5);
}
@keyframes skeuomorphism-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes skeuomorphism-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.skeuomorphism-card {
position: relative;
overflow: hidden;
}
.skeuomorphism-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(139, 115, 85, 0.05), transparent);
pointer-events: none;
}
.skeuomorphism-card:hover::before {
opacity: 1;
}
.skeuomorphism-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(139, 115, 85, 0.08);
}
.skeuomorphism-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.skeuomorphism-animate-in {
animation: skeuomorphism-fade-in 0.5s ease-out both;
}
.skeuomorphism-focus { outline: 2px solid var(--skeuomorphism-primary, currentColor); outline-offset: 2px; }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
Skeuomorphism is a design approach that simulates the appearance and behavior of real-world objects, widely used in early iOS and digital products.
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 | /#3a2f22 / #e8dfd1 | 9.88:1 | ||
| Secondary text on background | /#6b5b45 / #e8dfd1 | 4.96:1 | ||
| Muted text on background | /#8b7355 / #e8dfd1 | 3.4:1 | ||
| Text on secondary background | /#3a2f22 / #8b7355 | 2.91:1 | ||
| Secondary text on secondary | /#6b5b45 / #8b7355 | 1.46:1 | ||
| Text on accent 1 | /#3a2f22 / #b8a88a | 5.6:1 | ||
| Alt text on accent 1 | /#6b5b45 / #b8a88a | 2.81:1 | ||
| Text on accent 2 | /#3a2f22 / #6b5b45 | 1.99:1 | ||
| Alt text on accent 2 | /#6b5b45 / #6b5b45 | 1:1 | ||
| Text on accent 3 | /#3a2f22 / #c9b896 | 6.7:1 | ||
| Alt text on accent 3 | /#6b5b45 / #c9b896 | 3.36:1 | ||
| Text on accent 4 | /#3a2f22 / #a0926e | 4.24:1 | ||
| Alt text on accent 4 | /#6b5b45 / #a0926e | 2.13:1 |
Readability
Score
90/100
Font Size
text-sm md:text-base
Font Weight
font-sans font-bold
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.