HomeStylesTemplates
StyleKit
StylesTemplates
  1. Home
  2. /Styles
  3. /Dopamine Design
Style Catalog/多巴胺设计

多巴胺设计

Dopamine Design

C
69/100Fair

高饱和度霓虹配色、大胆排版、充满能量感的视觉冲击力。2025-2026 年度设计趋势,用色彩直接刺激多巴胺分泌,让界面充满快乐和兴奋。

多巴胺高饱和霓虹快乐大胆能量expressiveboldvibrant表现力
View Full Showcase →Templates

Best For

多巴胺 / 高饱和 / 霓虹

Primary Move

Use high-saturation colors: bg-[#ff006e] bg-[#8338ec] bg-[#ffbe0b] bg-[#3a86ff]

Watch Out

No large gray areas: text-gray-500 bg-gray-100

Showcase Entry

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

View Full Showcase →

Color Palette

Primary

#ff006e

Secondary

#8338ec

Accent 1

#ffbe0b

Accent 2

#3a86ff

Accent 3

#06d6a0

Accent 4

#fb5607

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: Dopamine Design
style_slug: dopamine-design
style_source: /styles/dopamine-design

# 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 Dopamine Design expert. This is the 2025-2026 design mega-trend centered on high-saturation colors, bold typography, and joyful energy.

## Absolute Rules
- ALL colors must be high-saturation: #ff006e (pink), #8338ec (purple), #ffbe0b (yellow), #3a86ff (blue), #06d6a0 (green), #fb5607 (orange)
- Border-radius must be large: rounded-2xl minimum, rounded-full for buttons
- Shadows MUST be colored, never gray
- Typography is bold: font-black for headings, text-5xl+ for hero text
- Buttons are pill-shaped

## Forbidden
- Gray backgrounds or text
- Small border-radius
- Black/gray shadows
- Serif fonts, pastel colors, thin font weights

Component Templates

Component Preview

按钮

Dopamine Design 风格的 pill 形状高饱和按钮

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

58%

Fallback

Dark Mode

35%

Fallback

UI States

79%

Partial

Motion

70%

Partial

A11y

70%

Partial

Performance

35%

Fallback

Key State Coverage

light / dark
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

  • This style contains dark-mode signals, but no curated dark token contract has been reviewed.
  • 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
/* Dopamine Design Global Styles */
@layer base {
  body {
    @apply bg-white text-zinc-900 antialiased;
    font-family: 'Inter', 'SF Pro Display', -apple-system, system-ui, sans-serif;
  }
}

@layer utilities {
  .dopamine-gradient-text {
    background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .dopamine-glow-pink {
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.4);
  }

  .dopamine-glow-purple {
    box-shadow: 0 8px 30px rgba(131, 56, 236, 0.4);
  }

  .dopamine-glow-blue {
    box-shadow: 0 8px 30px rgba(58, 134, 255, 0.4);
  }
}
/* Dopamine Design Design Tokens */
:root {
  --dopamine-design-primary: #ff006e;
  --dopamine-design-secondary: #8338ec;
  --dopamine-design-accent: #ffbe0b;
  --dopamine-design-glow: rgba(255, 0, 110, 0.3);
}

@keyframes dopamine-design-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dopamine-design-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.dopamine-design-card {
  position: relative;
  overflow: hidden;
}

.dopamine-design-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), transparent);
  pointer-events: none;
}

.dopamine-design-card:hover::before {
  opacity: 1;
}

.dopamine-design-frosted {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(255, 0, 110, 0.08);
}

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

.dopamine-design-animate-in {
  animation: dopamine-design-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

Dopamine Design is the hottest design trend of 2025-2026. The core idea is to use highly saturated colors, bold typography, and energetic visual elements to directly stimulate feelings of joy and excitement.

Accessibility

Accessibility Score

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

69

Overall Score

Grade: C - Fair

Contrast Ratios

Score: 60/100Average Ratio: 9.21:1
AA FailAAA Fail
ContextColorsRatioAAAAA
Text on background
/#1a1a2e / #ffffff
17.06:1
Secondary text on background
/#1a1a2e / #ffffff
17.06:1
Muted text on background
/#1a1a2e / #ffffff
17.06:1
Text on secondary background
/#1a1a2e / #f8f0ff
15.35:1
Secondary text on secondary
/#1a1a2e / #f8f0ff
15.35:1
Button primary
/#ffffff / #ff006e
3.83:1
Text on accent 1
/#1a1a2e / #ff006e
4.45:1
Alt text on accent 1
/#1a1a2e / #ff006e
4.45:1
Text on accent 2
/#1a1a2e / #8338ec
3.04:1
Alt text on accent 2
/#1a1a2e / #8338ec
3.04:1
Text on accent 3
/#1a1a2e / #3a86ff
4.9:1
Alt text on accent 3
/#1a1a2e / #3a86ff
4.9:1

Readability

Score

90/100

Font Size

text-base font-medium

Font Weight

font-sans font-black tracking-tight

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

Recommended Combinations with Dopamine Design

These curated recipes combine this style with layouts and animations, optimized for specific use cases.

Energetic Startup

Dynamic, growth-focused design for early-stage startups.

dopamine-designsplit-screen+3
modernplayfulanimated

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