Best For
warm dashboard / dashboard design / terracotta
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
warm dashboard / dashboard design / terracotta
Primary Move
Use warm-toned backgrounds bg-[#d4a088] or bg-[#c9967a]
Watch Out
No cool-toned backgrounds (blue, purple)
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.
---
# Warm Dashboard Design System
> 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.
## Design Philosophy
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.
Core principles:
- Warm comfort: Coral/terracotta backgrounds convey warmth
- Clear hierarchy: Cream-white cards form clear contrast on warm backgrounds
- Soft touch: Large rounded corners and diffused shadows create soft visuals
- Professional readability: Dark gray text ensures data readability
- Accent colors: Teal and golden yellow as data highlights and chart colors
---
## Token Dictionary (exact class mapping)
### Border
```
Width: border
Color: border-gray-200/50
Radius: rounded-2xl
```
### Shadow
```
sm: shadow-lg shadow-black/5
md: shadow-xl shadow-black/8
lg: shadow-2xl shadow-black/10
hover: hover:shadow-2xl hover:-translate-y-1
focus: focus:ring-2 focus:ring-[#4a9d9a]/30
```
### Interaction
```
Hover translate: (none)
Hover scale: (none)
Hover opacity: hover:-translate-y-0.5
Transition: transition-all duration-200
Active: active:scale-[0.98]
```
### Typefaces
```
Heading: font-semibold text-gray-800
Body: text-gray-600
Mono: font-mono text-gray-700
```
### Type scale
```
Hero: text-3xl md:text-4xl
H1: text-2xl md:text-3xl
H2: text-xl md:text-2xl
H3: text-lg md:text-xl
Body: text-sm md:text-base
Small: text-xs
```
### Spacing
```
Section: py-12 md:py-16
Container: px-6 md:px-8 lg:px-10
Card: p-5 md:p-6 lg:p-8
Gap sm: gap-3
Gap md: gap-4 md:gap-6
Gap lg: gap-6 md:gap-10
```
### Color roles
```
Background primary: bg-[#d4a088]
Background secondary: bg-[#faf8f5]
Background accent: bg-[#4a9d9a], bg-[#e8b86d], bg-[#c17767], bg-[#6b8e8e]
Text primary: text-gray-800
Text secondary: text-gray-600
Text muted: text-gray-400
Button primary: bg-[#4a9d9a] text-white
Button secondary: bg-white text-gray-700
```
---
## [FORBIDDEN]
These classes are banned in this style. Check for them before returning code:
### Banned classes
- `bg-blue-500`
- `bg-blue-600`
- `bg-purple-500`
- `bg-purple-600`
- `text-black`
- `rounded-none`
- `rounded-sm`
- `shadow-[0px_0px_0px`
- `border-2`
- `border-4`
- `bg-[#00ffff]`
- `bg-[#ff00ff]`
- `text-[#00ffff]`
### Banned patterns
- matches `^rounded-none$`
- matches `^rounded-sm$`
- matches `^text-black$`
- matches `^border-[2-4]$`
### Why they are banned
- `rounded-none`: Warm Dashboard uses large rounded corners (rounded-2xl or rounded-3xl)
- `rounded-sm`: Warm Dashboard uses large rounded corners (rounded-2xl or rounded-3xl)
- `text-black`: Warm Dashboard uses text-gray-800 for primary text, not pure black
- `border-2`: Warm Dashboard uses subtle single-pixel borders
- `bg-blue-500`: Warm Dashboard uses warm color palette, avoid cold backgrounds
> WARNING: if your code contains any of the above, replace it before shipping.
---
## [REQUIRED]
### Every button must include
```
px-5 py-2.5 md:px-6 md:py-3
rounded-xl
shadow-lg
hover:shadow-xl hover:-translate-y-0.5
transition-all duration-200
font-medium text-sm md:text-base
```
### Every card must include
```
bg-[#faf8f5]
rounded-2xl md:rounded-3xl
shadow-xl shadow-black/8
p-5 md:p-6 lg:p-8
hover:shadow-2xl hover:-translate-y-1
transition-all duration-300
```
### Every input must include
```
w-full px-4 py-3
bg-white
border border-gray-200
rounded-xl
text-gray-800
placeholder:text-gray-400
focus:outline-none focus:ring-2 focus:ring-[#4a9d9a]/30
focus:border-[#4a9d9a]
transition-all duration-200
```
---
## [COMPARE] Warm Dashboard wrong vs right
The wrong examples below stand for generic library defaults that were never adapted to this style. Do not read them as visual suggestions.
### Button
[WRONG] **Wrong** (generic component library default, do not copy):
```html
<button class="{GENERIC_LIBRARY_BUTTON_DEFAULT}">
Click me
</button>
```
[CORRECT] **Right** (uses this style's tokens):
```html
<button class="px-5 py-2.5 md:px-6 md:py-3 rounded-xl shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-200 font-medium text-sm md:text-base bg-[#4a9d9a] text-white">
Click me
</button>
```
### Card
[WRONG] **Wrong** (generic card, not adapted to this style):
```html
<div class="{GENERIC_LIBRARY_CARD_DEFAULT}">
<h3>{TITLE}</h3>
</div>
```
[CORRECT] **Right** (uses this style's card tokens):
```html
<div class="bg-[#faf8f5] rounded-2xl md:rounded-3xl shadow-xl shadow-black/8 p-5 md:p-6 lg:p-8 hover:shadow-2xl hover:-translate-y-1 transition-all duration-300 p-5 md:p-6 lg:p-8">
<h3 class="font-semibold text-gray-800 text-lg md:text-xl">{TITLE}</h3>
</div>
```
### Input
[WRONG] **Wrong** (generic input, not adapted to this style):
```html
<input class="{GENERIC_LIBRARY_INPUT_DEFAULT}" />
```
[CORRECT] **Right** (uses this style's input tokens):
```html
<input class="w-full px-4 py-3 bg-white border border-gray-200 rounded-xl text-gray-800 placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-[#4a9d9a]/30 focus:border-[#4a9d9a] transition-all duration-200" placeholder="{PLACEHOLDER}" />
```
---
## [TEMPLATES] Warm Dashboard page skeletons
These skeletons use this style's tokens only. Replace `{PLACEHOLDER}` values, but keep every token in place:
### Navigation
```html
<nav class="bg-[#d4a088] text-gray-800 border border-gray-200/50 px-6 md:px-8 lg:px-10">
<div class="flex items-center justify-between max-w-6xl mx-auto gap-4 md:gap-6">
<a href="/" class="font-semibold text-gray-800 text-lg md:text-xl">
{LOGO_TEXT}
</a>
<div class="flex gap-4 md:gap-6 text-gray-600 text-xs">
{NAV_LINKS}
</div>
</div>
</nav>
```
### Hero section
```html
<section class="bg-[#4a9d9a] text-gray-800 py-12 md:py-16 px-6 md:px-8 lg:px-10">
<div class="max-w-4xl mx-auto">
<h1 class="font-semibold text-gray-800 text-3xl md:text-4xl">
{HEADLINE}
</h1>
<p class="text-gray-600 text-sm md:text-base max-w-xl">
{SUBHEADLINE}
</p>
<button class="px-5 py-2.5 md:px-6 md:py-3 rounded-xl shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-200 font-medium text-sm md:text-base bg-[#4a9d9a] text-white">
{CTA_TEXT}
</button>
</div>
</section>
```
### Card grid
```html
<section class="bg-[#d4a088] text-gray-800 py-12 md:py-16 px-6 md:px-8 lg:px-10">
<div class="max-w-6xl mx-auto">
<h2 class="font-semibold text-gray-800 text-xl md:text-2xl">{SECTION_TITLE}</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 md:gap-6">
<!-- Card template - repeat for each card -->
<div class="bg-[#faf8f5] rounded-2xl md:rounded-3xl shadow-xl shadow-black/8 p-5 md:p-6 lg:p-8 hover:shadow-2xl hover:-translate-y-1 transition-all duration-300 p-5 md:p-6 lg:p-8">
<h3 class="font-semibold text-gray-800 text-lg md:text-xl">{CARD_TITLE}</h3>
<p class="text-gray-600 text-sm md:text-base text-gray-400">{CARD_DESCRIPTION}</p>
</div>
</div>
</div>
</section>
```
### Form input
```html
<input class="w-full px-4 py-3 bg-white border border-gray-200 rounded-xl text-gray-800 placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-[#4a9d9a]/30 focus:border-[#4a9d9a] transition-all duration-200" placeholder="{PLACEHOLDER}" />
```
### Footer
```html
<footer class="bg-[#faf8f5] text-gray-600 py-12 md:py-16 px-6 md:px-8 lg:px-10">
<div class="max-w-6xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 md:gap-10">
<div>
<span class="font-semibold text-gray-800 text-lg md:text-xl">{LOGO_TEXT}</span>
<p class="text-gray-600 text-xs">{TAGLINE}</p>
</div>
<div>
<h4 class="font-semibold text-gray-800 text-lg md:text-xl">{COLUMN_TITLE}</h4>
<ul class="text-gray-600 text-xs">
{FOOTER_LINKS}
</ul>
</div>
</div>
</div>
</footer>
```
---
## [CHECKLIST] Warm Dashboard post-generation self check
**Before returning code, verify every token and rule below. Fix any violation before delivering:**
### Token check
- [ ] Button includes: `px-5 py-2.5 md:px-6 md:py-3 rounded-xl shadow-lg hover:shadow-xl hover:-translate-y-0.5 transition-all duration-200 font-medium text-sm md:text-base`
- [ ] Card includes: `bg-[#faf8f5] rounded-2xl md:rounded-3xl shadow-xl shadow-black/8 p-5 md:p-6 lg:p-8 hover:shadow-2xl hover:-translate-y-1 transition-all duration-300`
- [ ] Input includes: `w-full px-4 py-3 bg-white border border-gray-200 rounded-xl text-gray-800 placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-[#4a9d9a]/30 focus:border-[#4a9d9a] transition-all duration-200`
### Forbidden check
- [ ] Not using `bg-blue-500`
- [ ] Not using `bg-blue-600`
- [ ] Not using `bg-purple-500`
- [ ] Not using `bg-purple-600`
- [ ] Not using `text-black`
- [ ] Not using `rounded-none`
- [ ] Not using `rounded-sm`
- [ ] Not using `shadow-[0px_0px_0px`
### Style rule check
- [ ] Use warm-toned backgrounds bg-[#d4a088] or bg-[#c9967a]
- [ ] Cards use cream white bg-[#faf8f5] or bg-white
- [ ] Use large rounded corners rounded-2xl or rounded-3xl
- [ ] Use soft diffused shadows shadow-xl shadow-black/10
- [ ] Charts use teal #4a9d9a and golden #e8b86d colors
### Style drift check
- [ ] Does not violate: No cool-toned backgrounds (blue, purple)
- [ ] Does not violate: No pure black text text-black
- [ ] Does not violate: No sharp corners rounded-none rounded-sm
- [ ] Does not violate: No hard-edge shadows
- [ ] Does not violate: No highly saturated neon colors
### Delivery check
- [ ] Responsive layout holds on phone, tablet and desktop with no horizontal overflow
- [ ] Every interactive element has a visible focus state, an accessible name and a reduced-motion path
- [ ] Text contrast meets WCAG AA and colour alone never carries state
- [ ] The result is still recognizable at a glance as Warm Dashboard
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- cool-toned backgrounds (blue, purple)
- pure black text text-black
- sharp corners rounded-none rounded-sm
- hard-edge shadows
- highly saturated neon colors
- thick borders border-2 or above
## Self-Check (Verify Before Shipping)
If any item fails, the style has drifted — fix before shipping.
- [ ] No purple-to-blue gradients
- [ ] No overused fonts (Inter, Roboto, Geist, Fraunces, Plus Jakarta Sans)
- [ ] No nested cards (cards inside cards)
- [ ] No gray text on colored backgrounds
- [ ] Body text contrast meets WCAG AA (>= 4.5:1)
- [ ] No bounce or elastic easing curves
- [ ] Animations have a prefers-reduced-motion fallback
- [ ] Body text line length capped at 65-75 characters
- [ ] No side-stripe accent borders (border-left/right > 1px)
- [ ] No gradient text (background-clip: text)
- [ ] No glassmorphism used as the default surface treatment
- [ ] No tiny uppercase tracked eyebrow labels above every section heading
- [ ] no cool-toned backgrounds (blue, purple)
- [ ] no pure black text text-black
- [ ] no sharp corners rounded-none rounded-sm
- [ ] no hard-edge shadows
- [ ] no highly saturated neon colorsMore prompt libraries: All UI Prompts · Tailwind UI Prompts · Dark Mode UI Prompts
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
FAQ
/* 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;
}Related Styles
Explore these styles for ready-made tokens and components.
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.