HomeStylesTemplates
StyleKit
StylesTemplates
  1. Home
  2. /Styles
  3. /Pastel Goth
Style Catalog/粉彩哥特

粉彩哥特

Pastel Goth

D
58/100Poor

A unique fusion of dark aesthetics and candy colors, pairing soft hues like pastel purple and pastel blue with gothic elements such as skulls and crosses. Dark backgrounds with pastel highlights.

粉彩哥特柔暗糖果色骷髅十字架暗色粉紫expressiveboldvibrant
View Full Showcase →Templates

Best For

粉彩哥特 / 柔暗 / 糖果色

Primary Move

Use deep purple bg-[#2d1b3d] and near-black bg-[#1a1225] as background colors

Watch Out

Do not use bright white or pure white backgrounds bg-white, bg-gray-50

Showcase Entry

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

View Full Showcase →

Color Palette

Primary

#2d1b3d

Secondary

#1a1225

Accent 1

#d4a5e3

Accent 2

#7ec8c8

Accent 3

#f5a5b8

Accent 4

#b8a5f5

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: Pastel Goth
style_slug: pastel-goth
style_source: /styles/pastel-goth

# 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 Pastel Goth design style frontend development expert. All generated code must strictly follow these constraints:

## Absolutely Forbidden

- White or light backgrounds (bg-white, bg-gray-50, bg-[#faf9f7])
- Pure saturated colors (bg-red-500, bg-blue-600)
- Earth tones (bg-amber-700, text-[#8b7355])
- Warm sunny colors (bg-yellow-300, bg-orange-400)
- Sharp corners (rounded-none)
- Pure dark without pastel highlights
- Bright green (text-green-400, bg-green-500)

## Must Follow

- Dark purple #2d1b3d and near-black #1a1225 as backgrounds
- Lavender #d4a5e3 as primary text/accent color
- Pastel teal #7ec8c8, pastel pink #f5a5b8, periwinkle #b8a5f5 as secondary accents
- Soft pastel glow effects shadow-[0_0_Xpx_rgba(212,165,227,...)]
- Rounded corners rounded-xl
- Semi-transparent pastel borders border-[#d4a5e3]/20 or /30
- Gradient text using pastel colors for headings

## Color Palette

Primary:
- Dark Purple: #2d1b3d
- Near Black: #1a1225
- Lavender: #d4a5e3
- Pastel Teal: #7ec8c8
- Pastel Pink: #f5a5b8
- Periwinkle: #b8a5f5

## Special Elements

- Pastel glow orbs (blurred circles)
- Cross and gothic symbols in pastel
- Gradient text (lavender to pink to periwinkle)
- Small pastel dots as decorations
- Semi-transparent borders with pastel glow

## Animation & Interaction Rules

- Toxic Glow: Hover glow must reflect conflicting layers of pastel purple, teal, and pink, not single-color glow.
- Creepy Softness: Interactions maintain duration-300 to 500, allowing slight float-up but avoiding excessive bouncing.
- Sweet Rebellious Press: Active state can briefly invert border/glow colors, highlighting subcultural rebelliousness.
- Occult Hover: Corner decorations or micro-symbols can shift and brighten slightly, creating an uneasy yet cute atmosphere.

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
/* Pastel Goth Global Styles */

:root {
  --pg-dark-purple: #2d1b3d;
  --pg-near-black: #1a1225;
  --pg-lavender: #d4a5e3;
  --pg-pastel-teal: #7ec8c8;
  --pg-pastel-pink: #f5a5b8;
  --pg-periwinkle: #b8a5f5;
}

/* Pastel glow text */
.pg-glow-text {
  text-shadow:
    0 0 10px rgba(212, 165, 227, 0.3),
    0 0 20px rgba(212, 165, 227, 0.15);
}

/* Pink glow */
.pg-pink-glow {
  text-shadow:
    0 0 10px rgba(245, 165, 184, 0.3),
    0 0 20px rgba(245, 165, 184, 0.15);
}

/* Ambient background orb */
.pg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.05;
}

/* Pastel gradient */
.pg-gradient {
  background: linear-gradient(135deg, var(--pg-lavender), var(--pg-pastel-pink), var(--pg-periwinkle));
}

/* Dark card */
.pg-card {
  background-color: var(--pg-near-black);
  border: 1px solid rgba(212, 165, 227, 0.15);
  border-radius: 0.75rem;
}

/* Cross symbol */
.pg-cross {
  position: relative;
  width: 24px;
  height: 24px;
}
.pg-cross::before,
.pg-cross::after {
  content: '';
  position: absolute;
  background-color: var(--pg-periwinkle);
  opacity: 0.3;
}
.pg-cross::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.pg-cross::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

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

Pastel Goth is a unique aesthetic subculture born from Tumblr in the 2010s, creating a subversive fusion of traditional gothic dark elements with sweet candy colors.

Accessibility

Accessibility Score

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

58

Overall Score

Grade: D - Poor

Contrast Ratios

Score: 45/100Average Ratio: 4.2:1
AA FailAAA Fail
ContextColorsRatioAAAAA
Text on background
/#d4a5e3 / #1a1225
8.89:1
Secondary text on background
/#7ec8c8 / #1a1225
9.49:1
Muted text on background
/#b8a5f5 / #1a1225
8.42:1
Text on secondary background
/#d4a5e3 / #2d1b3d
7.7:1
Secondary text on secondary
/#7ec8c8 / #2d1b3d
8.22:1
Button primary
/#d4a5e3 / #2d1b3d
7.7:1
Text on accent 1
/#d4a5e3 / #d4a5e3
1:1
Alt text on accent 1
/#7ec8c8 / #d4a5e3
1.07:1
Text on accent 2
/#d4a5e3 / #7ec8c8
1.07:1
Alt text on accent 2
/#7ec8c8 / #7ec8c8
1:1
Text on accent 3
/#d4a5e3 / #f5a5b8
1.06:1
Alt text on accent 3
/#7ec8c8 / #f5a5b8
1:1
Text on accent 4
/#d4a5e3 / #b8a5f5
1.06:1
Alt text on accent 4
/#7ec8c8 / #b8a5f5
1.13:1

Readability

Score

87/100

Font Size

text-sm md:text-base

Font Weight

font-bold tracking-wide text-[#d4a5e3]

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