HomeStylesTemplates
StyleKit
StylesTemplates
  1. Home
  2. /Styles
  3. /Skeuomorphism
Style Catalog/拟物设计

拟物设计

Skeuomorphism

D
47/100Poor

A digital design style that simulates real-world objects through textures, lighting, and materials to mimic physical items, bringing familiarity and intuitive experiences.

拟物写实纹理质感真实3D阴影retrovintagenostalgic
View Full Showcase →Templates

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.

View Full Showcase →

Color Palette

Primary

#8b7355

Secondary

#d4c4a8

Accent 1

#c9a227

Accent 2

#5c4033

Accent 3

#2e5a3c

Accent 4

#4bc542

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: 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

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
/* 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

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

Skeuomorphism is a design approach that simulates the appearance and behavior of real-world objects, widely used in early iOS and digital products.

Accessibility

Accessibility Score

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

47

Overall Score

Grade: D - Poor

Contrast Ratios

Score: 29/100Average Ratio: 3.88:1
AA FailAAA Fail
ContextColorsRatioAAAAA
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.

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