AgentSkillsCN

Design Styles

设计风格

SKILL.md

Design Styles Skill

AI-powered design system with 100+ curated styles for rapid frontend development.

Overview

This skill provides a comprehensive design vocabulary optimized for AI-assisted code generation. Each style includes complete design tokens, color palettes, typography, and component patterns.

Style Categories

1. Minimalist (8 styles)

Clean, focused designs emphasizing whitespace and simplicity.

StyleDescriptionBest For
cleanPure white, subtle shadowsLanding pages, portfolios
scandinavianWarm neutrals, natural texturesE-commerce, lifestyle
japanese-zenAsymmetric balance, muted tonesWellness, luxury
swissGrid-based, Helvetica, bold contrastCorporate, data
flat-designNo shadows, bright colorsMobile apps, dashboards
whitespaceExtreme minimalismGalleries, portfolios
monochromeSingle color variationsEditorial, fashion
brutalist-minimalRaw, functionalTech, experimental

2. Dark Mode (7 styles)

Sophisticated dark interfaces for reduced eye strain.

StyleDescriptionColors
dark-elegantRich blacks, gold accents#0D0D0D, #D4AF37
dark-professionalCharcoal, blue accents#1A1A2E, #4A90D9
dark-vibrantDeep purple, neon accents#1A0A2E, #FF6B6B
midnightNavy blue base#0A1628, #60A5FA
charcoalWarm dark grays#1F1F1F, #E5E5E5
obsidianPure black, minimal#000000, #FFFFFF
nord-darkNord color palette#2E3440, #88C0D0

3. Modern UI (8 styles)

Contemporary interface patterns from major design systems.

StyleKey FeatureEffect
glassmorphismFrosted glassbackdrop-filter: blur(10px)
neumorphismSoft UI, embossedInset/outset shadows
material-designGoogle's systemElevation shadows
fluent-designMicrosoft's systemAcrylic, reveal
auroraGradient overlaysAnimated gradients
frostedHeavy blur effectGlass + depth
claySoft 3D elementsInflated surfaces
bentoGrid cards layoutModular containers

4. Retro & Vintage (8 styles)

Nostalgic designs from past eras.

StyleEraCharacteristics
80s-neon1980sHot pink, cyan, grid lines
90s-web1990sBeveled buttons, gradients
vaporwaveAestheticPink/purple, glitch, roman busts
memphis1980sGeometric, bold patterns
mid-century1950sOrganic shapes, muted colors
art-deco1920sGold, geometric, symmetry
pixel-art8-bitPixelated, limited palette
synthwaveRetro-futureSunset gradients, chrome

5. Futuristic (7 styles)

Sci-fi inspired designs for tech-forward projects.

StyleInspirationKey Elements
cyberpunkBlade RunnerNeon on dark, glitch
sci-fiSpace techBlue glow, holographic
neon-techModern techBright neons, dark bg
holographicHologramsRainbow gradients, transparency
matrixThe MatrixGreen code, black
dystopianPost-apocalypticGritty, industrial
space-age1960s FuturismCurves, silver, orange

6. Nature-Inspired (7 styles)

Organic designs drawing from natural elements.

StylePaletteMood
organicEarthy browns, greensGrounded, natural
earth-tonesTerra cotta, sageWarm, sustainable
botanicalDeep greens, creamFresh, eco-friendly
oceanBlues, teals, sandCalm, refreshing
forestDark greens, brownsMysterious, rich
sunsetOrange, pink, purpleWarm, inspiring
aurora-borealisGreen, purple, blueMagical, dynamic

7. Bold & Expressive (6 styles)

High-impact designs that make statements.

StyleApproachUsage
neo-brutalistRaw HTML, bold bordersTech, experimental
bold-geometricSharp angles, primary colorsStartups, creative
maximalistMore is more, layeredEntertainment, fashion
pop-artComics, halftone dotsYouth, media
graffitiStreet art, spray textureUrban, music
comic-bookSpeech bubbles, action linesGames, youth

8. Professional (7 styles)

Business-appropriate designs for enterprise.

StyleIndustryTone
corporateGeneral businessTrust, stability
enterpriseLarge orgsSophisticated, neutral
fintechFinanceModern, secure
legalLawTraditional, authoritative
medicalHealthcareClean, trustworthy
consultingServicesPremium, expert
saasSoftwareFriendly, capable

9. Gradient & Color (6 styles)

Color-focused designs with dynamic gradients.

StyleTypeExample
gradient-meshMulti-point gradientsApple-style blurs
duotoneTwo-color overlaySpotify style
triadicThree-color harmonyVibrant, balanced
complementaryOpposite colorsHigh contrast
analogousAdjacent colorsHarmonious
split-compSplit complementaryDynamic balance

Usage

Basic Application

code
/style cyberpunk tailwind

Style Combination

code
/style "glassmorphism + dark-mode" css

With Artifact Generator

code
/artifact create dashboard
/style cyberpunk
# Applies style to current artifact

Integration Points

  • Artifact Generator: Direct style application to artifacts
  • Component Templates: Style-aware component generation
  • Keycloak Theming: Auth page customization (if using Keycloak)

Style Token Structure

Each style provides:

json
{
  "name": "style-name",
  "category": "category",
  "colors": {
    "primary": "#...",
    "secondary": "#...",
    "accent": "#...",
    "background": "#...",
    "surface": "#...",
    "text": "#...",
    "textMuted": "#..."
  },
  "typography": {
    "fontFamily": "...",
    "headingFont": "...",
    "fontSize": { "base": "16px", "scale": 1.25 },
    "fontWeight": { "normal": 400, "bold": 700 }
  },
  "spacing": {
    "unit": "4px",
    "scale": [0, 1, 2, 4, 6, 8, 12, 16, 24, 32, 48, 64]
  },
  "effects": {
    "borderRadius": "...",
    "shadow": "...",
    "transition": "..."
  },
  "keywords": ["prompt", "keywords", "for", "ai"]
}

Best Practices

  1. Consistency: Apply one primary style across project
  2. Accessibility: All styles meet WCAG AA contrast
  3. Performance: Prefer CSS variables over runtime
  4. Responsiveness: Tokens include responsive scales
  5. Customization: Styles are starting points, adjust as needed