Best For
studio / creative / agency
创意工作室风
A bold, confident portfolio style for design studios, agencies, and freelancers. Oversized typography, bold color blocking, rich hover states, client logo walls, and team grids — professional but never corporate, with personality built in.
Best For
studio / creative / agency
Primary Move
Dark sections use bg-[#1A1A1A] with text-white; light sections use bg-[#F5F5F0] with text-[#1A1A1A]
Watch Out
Never use small or standard sizing for hero headings (below text-5xl): a creative studio hero must carry visual impact
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#1A1A1A
Secondary
#FFFFFF
Accent 1
#FF6B6B
Accent 2
#F5F5F0
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: Creative Studio
style_slug: studio-bold
style_source: /styles/studio-bold
# 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 Creative Studio design expert for bold agency portfolios.
## Absolute Rules
- Dark #1A1A1A hero/footer; warm sand #F5F5F0 content sections; deep #0D0D0D footer bottom
- Sans-serif only: body font-light/font-normal, headings font-bold/font-black
- Coral #FF6B6B is the sole accent color
- Sections transition via bg color blocks (no borders between sections)
- Cards: no default radius, hover: scale-[1.02] + shadow-2xl + coral title
- CTAs: bg-[#FF6B6B] text-white font-bold, hover scale + shadow + translate
- Nav: fixed, bg-[#1A1A1A]/95 backdrop-blur, hover turns coral
- Avatars: rounded-full with white border
## Forbidden
- Serif fonts, pure white backgrounds, single-axis hovers
- Borders between sections, rounded-lg+ on containers
- Hero headings below text-5xl, subtle shadows
## Responsive
- Mobile: single column, hamburger nav
- Desktop: 3-column grid, full nav
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use small or standard sizing for hero headings (below text-5xl): a creative studio hero must carry visual impact
- use rounded-lg or larger radii (except avatars): project cards should be clean and square; rounding softens confidence
- use serif fonts: all text must be sans-serif; body uses font-light or font-normal, headings use font-bold or font-black
- rely on thin borders for section separation: sections transition via bg color blocks, not borders — the color switch is the separator
- use subtle hover states: hover must shift in scale, shadow, and color simultaneously; fading opacity is insufficient
- use pure white bg-white: dark zones use #1A1A1A, light zones use #F5F5F0; white only appears on text
## 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
- [ ] never use small or standard sizing for hero headings (below text-5xl): a creative studio hero must carry visual impact
- [ ] never use rounded-lg or larger radii (except avatars): project cards should be clean and square; rounding softens confidence
- [ ] never use serif fonts: all text must be sans-serif; body uses font-light or font-normal, headings use font-bold or font-black
- [ ] never rely on thin borders for section separation: sections transition via bg color blocks, not borders — the color switch is the separator
- [ ] never use subtle hover states: hover must shift in scale, shadow, and color simultaneously; fading opacity is insufficientUse it in your workflow
Drop this style's theme into an existing shadcn project with one command.
npx shadcn add https://www.stylekit.top/r/studio-bold.jsonGrab this style's theme without leaving your terminal.
npx stylekit-cli add studio-boldLet Claude, Cursor & Windsurf apply “Creative Studio” while you code.
npx stylekit-mcpComponent Templates
珊瑚色实心按钮,粗体大字号,悬停时放大加阴影,像 agency 的 Contact 入口
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
.studio-bold-section-dark {
background-color: #1A1A1A;
color: #FFFFFF;
}
.studio-bold-section-light {
background-color: #F5F5F0;
color: #1A1A1A;
}
.studio-bold-section-darker {
background-color: #0D0D0D;
color: #FFFFFF;
}
.studio-bold-hero {
min-height: 100vh;
display: flex;
align-items: center;
background-color: #1A1A1A;
padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.studio-bold-card {
background-color: #F5F5F0;
overflow: hidden;
transition: all 300ms ease;
}
.studio-bold-card:hover {
transform: scale(1.02);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.studio-bold-card:hover .studio-bold-card-title {
color: #FF6B6B;
}
.studio-bold-card-arrow {
transition: transform 300ms ease;
}
.studio-bold-card:hover .studio-bold-card-arrow {
transform: translateX(4px);
}
.studio-bold-btn-primary {
background-color: #FF6B6B;
color: #FFFFFF;
font-weight: 700;
padding: 1rem 2rem;
font-size: 1.125rem;
border: none;
cursor: pointer;
transition: all 300ms ease;
}
.studio-bold-btn-primary:hover {
background-color: #E55A5A;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
transform: translateY(-2px);
}
.studio-bold-btn-outline {
border: 2px solid rgba(255, 255, 255, 0.3);
color: #FFFFFF;
font-weight: 700;
padding: 1rem 2rem;
font-size: 1.125rem;
background: transparent;
cursor: pointer;
transition: all 300ms ease;
}
.studio-bold-btn-outline:hover {
border-color: #FFFFFF;
background-color: rgba(255, 255, 255, 0.1);
}
.studio-bold-clients {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 3rem;
padding: 3rem 0;
opacity: 0.6;
filter: grayscale(1);
transition: all 300ms ease;
}
.studio-bold-clients:hover {
opacity: 1;
filter: grayscale(0);
}
.studio-bold-testimonial {
max-width: 56rem;
margin: 0 auto;
text-align: center;
font-style: italic;
font-size: 1.5rem;
line-height: 1.6;
color: #1A1A1A;
padding: 4rem 3rem;
}
@media (min-width: 768px) {
.studio-bold-testimonial {
font-size: 1.875rem;
}
}
.studio-bold-team-avatar {
width: 3rem;
height: 3rem;
border-radius: 9999px;
border: 2px solid #FFFFFF;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
object-fit: cover;
}
.studio-bold-nav-link {
color: rgba(255, 255, 255, 0.7);
font-weight: 500;
transition: color 200ms ease;
cursor: pointer;
}
.studio-bold-nav-link:hover {
color: #FF6B6B;
}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
Creative Studio is "the website designers make for themselves": all the expressive energy of an agency site, held together by editorial restraint.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: D - Poor
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#1A1A1A / #1A1A1A | 1:1 | ||
| Secondary text on background | /#333333 / #1A1A1A | 1.38:1 | ||
| Text on secondary background | /#1A1A1A / #F5F5F0 | 15.91:1 | ||
| Secondary text on secondary | /#333333 / #F5F5F0 | 11.55:1 | ||
| Button primary | /#ffffff / #FF6B6B | 2.78:1 | ||
| Text on accent 1 | /#1A1A1A / #FF6B6B | 6.27:1 | ||
| Alt text on accent 1 | /#333333 / #FF6B6B | 4.55:1 | ||
| Text on accent 2 | /#1A1A1A / #333333 | 1.38:1 | ||
| Alt text on accent 2 | /#333333 / #333333 | 1:1 | ||
| Text on accent 3 | /#1A1A1A / #0D0D0D | 1.12:1 | ||
| Alt text on accent 3 | /#333333 / #0D0D0D | 1.54:1 | ||
| Text on accent 4 | /#1A1A1A / #E55A5A | 4.92:1 | ||
| Alt text on accent 4 | /#333333 / #E55A5A | 3.57:1 |
Readability
Score
90/100
Font Size
text-base md:text-lg
Font Weight
font-bold tracking-tight text-[#1A1A1A]
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.