HomeStylesTemplates
StyleKit
StylesTemplates
  1. Home
  2. /Styles
  3. /Neo-Brutalist Playful
Style Catalog/俏皮野兽派

俏皮野兽派

Neo-Brutalist Playful

C
65/100Fair

A lively version of Neo-Brutalist. Retains core characteristics while adding more colors, rotated/tilted elements, icon decorations, and playful micro-interactions -- ideal for youth-oriented brands.

俏皮野兽派多彩倾斜元素图标年轻化expressiveboldvibrant表现力张力
View Full Showcase →Templates

Best For

俏皮野兽派 / 多彩 / 倾斜元素

Primary Move

Keep no rounded corners rounded-none

Watch Out

Do not use rounded corners

Showcase Entry

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

View Full Showcase →

Color Palette

Primary

#000000

Secondary

#ffffff

Accent 1

#ff6b6b

Accent 2

#4ecdc4

Accent 3

#ffe66d

Accent 4

#95e1d3

Accent 5

#f38181

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: Neo-Brutalist Playful
style_slug: neo-brutalist-playful
style_source: /styles/neo-brutalist-playful

# 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 Neo-Brutalist Playful design style frontend development expert. This is the lively version of Neo-Brutalist.

## Core Retained

- No rounded corners rounded-none
- Thick borders border-4 border-black
- Hard-edge shadows
- Hover displacement effects

## Playful Elements

Rotation:
- Add slight rotation to elements rotate-[-2deg] rotate-[1deg] rotate-[-1deg]
- Never exceed 3 degrees

Colored shadows:
- shadow-[6px_6px_0px_0px_rgba(255,107,107,1)]
- shadow-[6px_6px_0px_0px_rgba(78,205,196,1)]
- Shadow color changes on hover

Colors (multi-colored):
- Red: #ff6b6b
- Teal: #4ecdc4
- Yellow: #ffe66d
- Mint: #95e1d3
- Coral: #f38181

Icons & Decorations:
- Do not use emoji characters
- May use Lucide React line icons as accents
- Decorative elements prefer geometric shapes (squares, dots, lines)

Interaction effects:
- hover:scale-105 enlargement
- hover:-translate-y-2 float up
- transition-all duration-300

## Animation & Interaction Rules

- Toy Spring: Use duration-300 + ease-[cubic-bezier(0.34,1.56,0.64,1)] for spring-bounce displacement and rotation, distinguishing from the original's hard-cut feedback.
- Tilt Exaggeration: Initial slight tilt switches to a larger reverse angle on hover (still within 3 degrees), keeping it playful but controlled.
- Color Ping-Pong: Hard-edge shadows jump between teal, pink, and yellow, maintaining brutalist structure while enhancing toy-like feel.
- Joyful Press: :active needs "squish" feedback: shadow-to-zero + equal displacement + slight scale (active:scale-95).

## Forbidden

- Rounded corners
- Blurred shadows
- Gradients
- Dull/dark colors

Component Templates

Component Preview

按钮

俏皮版 Brutal 按钮

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
/* Neo-Brutalist Playful 全局样式 */
:root {
  --playful-red: #ff6b6b;
  --playful-teal: #4ecdc4;
  --playful-yellow: #ffe66d;
  --playful-mint: #95e1d3;
  --playful-coral: #f38181;
}

body {
  background: white;
  color: black;
}

/* 标题 - 极粗 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}

/* 选中文字 - 俏皮红 */
::selection {
  background: var(--playful-red);
  color: white;
}

/* 有趣的下划线 */
.fun-underline {
  text-decoration: underline;
  text-decoration-color: var(--playful-yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}
@keyframes neo-brutalist-playful-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neo-brutalist-playful-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.neo-brutalist-playful-card {
  position: relative;
  overflow: hidden;
}

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

.neo-brutalist-playful-card:hover::before {
  opacity: 1;
}

.neo-brutalist-playful-gradient {
  background: linear-gradient(135deg, #000000, #ff6b6b);
}

.neo-brutalist-playful-gradient-text {
  background: linear-gradient(135deg, #000000, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neo-brutalist-playful-frosted {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(0, 0, 0, 0.08);
}

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

.neo-brutalist-playful-animate-in {
  animation: neo-brutalist-playful-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

Neo-Brutalist Playful is a lively variant of the original Neo-Brutalist. While maintaining the hard-edge, no-rounded-corner structural foundation, it adds fun through:

Accessibility

Accessibility Score

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

65

Overall Score

Grade: C - Fair

Contrast Ratios

Score: 58/100Average Ratio: 7.78:1
AA FailAAA Fail
ContextColorsRatioAAAAA
Text on background
/#000000 / #ffffff
21:1
Secondary text on background
/#ffffff / #ffffff
1:1
Muted text on background
/#374151 / #ffffff
10.31:1
Text on secondary background
/#000000 / #000000
1:1
Secondary text on secondary
/#ffffff / #000000
21:1
Button primary
/#ffffff / #ff6b6b
2.78:1
Text on accent 1
/#000000 / #ff6b6b
7.57:1
Alt text on accent 1
/#ffffff / #ff6b6b
2.78:1
Text on accent 2
/#000000 / #4ecdc4
10.85:1
Alt text on accent 2
/#ffffff / #4ecdc4
1.93:1
Text on accent 3
/#000000 / #ffe66d
16.79:1
Alt text on accent 3
/#ffffff / #ffe66d
1.25:1
Text on accent 4
/#000000 / #95e1d3
13.99:1
Alt text on accent 4
/#ffffff / #95e1d3
1.5:1
Text on accent 5
/#000000 / #f38181
8.27:1
Alt text on accent 5
/#ffffff / #f38181
2.54:1

Readability

Score

82/100

Font Size

text-sm md:text-base

Font Weight

font-black uppercase

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 Neo-Brutalist Playful

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

Creative Portfolio

Showcase creative work with bold visual statements.

neo-brutalist-playfulmagazine-grid+3
creativeboldanimated

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