Best For
暖色 / 仪表盘 / 珊瑚色
Warm Dashboard
A warm and soft dashboard design style with coral/terracotta backgrounds, cream-white cards, and gentle shadows, creating a comfortable and professional data display experience.
Best For
暖色 / 仪表盘 / 珊瑚色
Primary Move
Use warm-toned backgrounds bg-[#d4a088] or bg-[#c9967a]
Watch Out
No cool-toned backgrounds (blue, purple)
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#d4a088
Secondary
#faf8f5
Accent 1
#4a9d9a
Accent 2
#e8b86d
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: Warm Dashboard
style_slug: warm-dashboard
style_source: /styles/warm-dashboard
# 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 Warm Dashboard design style frontend development expert.
## Core Features
Background:
- Main background: bg-[#d4a088] coral/terracotta
- Optional variants: bg-[#c9967a] darker, bg-[#e0b8a4] lighter
Cards:
- Background: bg-[#faf8f5] cream white or bg-white
- Rounded corners: rounded-2xl or rounded-3xl
- Shadows: shadow-xl shadow-black/8 (soft diffused)
- hover: hover:shadow-2xl hover:-translate-y-1
Color System:
- Teal (primary accent): #4a9d9a - for primary buttons, positive data
- Golden (chart primary): #e8b86d - for charts, highlights
- Coral (secondary accent): #c17767 - for negative data, warnings
- Sage (auxiliary): #6b8e8e - for secondary elements
Text:
- Headings: text-gray-800 font-semibold/bold
- Body: text-gray-600
- Secondary: text-gray-500 text-gray-400
- On warm background: text-white
## Layout
Sidebar:
- bg-white/80 backdrop-blur-xl
- Width w-60
- Contains logo, avatar, navigation
Main area:
- bg-[#d4a088] warm background
- p-6 md:p-8 lg:p-10
- Stats card grid + chart cards
## Forbidden
- Cool backgrounds (blue, purple, gray)
- Pure black text
- Sharp corners
- Hard-edge shadows
- Neon colors
- Thick borders
## Animation & Interaction Rules
- Micro-Focus: As a data-dense dashboard, card interactions must never cause dramatic visual jumps. Hover allows only very slight upward float (hover:-translate-y-0.5), with enhanced shadow (shadow-xl to shadow-2xl) to focus attention.
- Tinted Diffusion: Abandon dead-black shadows. Hover highlight operations (like primary buttons) must emit a soft halo in the same color family as the primary color (e.g., hover:shadow-[0_8px_20px_rgba(74,157,154,0.25)]), maintaining the overall warm atmosphere.
- Data Pulse: Enhance data readability. When hovering on data cards, key metrics (KPI values) can quickly micro-scale (group-hover:scale-105) or switch to accent color (teal or golden), helping users lock onto core information.
- Warm Utility: All state transitions must balance efficiency and softness, recommended duration-200 ease-out.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
/* Warm Dashboard 全局样式 */
:root {
--warm-bg: #d4a088;
--warm-bg-light: #e0b8a4;
--warm-card: #faf8f5;
--warm-teal: #4a9d9a;
--warm-gold: #e8b86d;
--warm-coral: #c17767;
--warm-sage: #6b8e8e;
}
body {
background: var(--warm-bg);
color: #374151;
}
/* 卡片基础样式 */
.warm-card {
background: var(--warm-card);
border-radius: 1rem;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}
/* 侧边栏毛玻璃 */
.warm-sidebar {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
}
/* 数据高亮 */
.warm-highlight {
color: var(--warm-teal);
}
.warm-highlight-negative {
color: var(--warm-coral);
}
/* 图表颜色 */
.warm-chart-primary {
fill: var(--warm-gold);
}
.warm-chart-secondary {
fill: var(--warm-teal);
}
@keyframes warm-dashboard-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes warm-dashboard-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.warm-dashboard-card {
position: relative;
overflow: hidden;
}
.warm-dashboard-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(212, 160, 136, 0.05), transparent);
pointer-events: none;
}
.warm-dashboard-card:hover::before {
opacity: 1;
}
.warm-dashboard-gradient {
background: linear-gradient(135deg, #d4a088, #4a9d9a);
}
.warm-dashboard-gradient-text {
background: linear-gradient(135deg, #d4a088, #4a9d9a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.warm-dashboard-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.warm-dashboard-animate-in {
animation: warm-dashboard-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
Warm Dashboard is a warm, professional interface design style that makes data presentation more approachable and friendly through warm-toned backgrounds and soft card designs.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: F - Failing
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Secondary text on background | /#4b5563 / #d4a088 | 3.3:1 | ||
| Muted text on background | /#9ca3af / #d4a088 | 1.11:1 | ||
| Secondary text on secondary | /#4b5563 / #faf8f5 | 7.13:1 | ||
| Button primary | /#ffffff / #4a9d9a | 3.19:1 | ||
| Alt text on accent 1 | /#4b5563 / #4a9d9a | 2.37:1 | ||
| Alt text on accent 2 | /#4b5563 / #e8b86d | 4.14:1 | ||
| Alt text on accent 3 | /#4b5563 / #c17767 | 2.2:1 | ||
| Alt text on accent 4 | /#4b5563 / #6b8e8e | 2.12:1 |
Readability
Score
77/100
Font Size
text-sm md:text-base
Font Weight
font-semibold text-gray-800
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.
Design Recipes
These curated recipes combine this style with layouts and animations, optimized for specific use cases.