Best For
拼贴 / 剪贴 / 混合材质
Collage Art
Magazine collage and mixed-media aesthetics with paper cutouts, multi-layer stacking, torn paper edges, and mixed typography, creating a visually impactful handcrafted creative experience.
Best For
拼贴 / 剪贴 / 混合材质
Primary Move
Use mixed fonts (serif font-serif + sans-serif font-sans + monospace font-mono alternating)
Watch Out
No smooth gradients (bg-gradient-to-*)
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#2d2d2d
Secondary
#f5f0e8
Accent 1
#e74c3c
Accent 2
#3498db
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: Collage Art
style_slug: collage-art
style_source: /styles/collage-art
# 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 Collage Art design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Smooth gradients (bg-gradient-to-*)
- Soft rounded corners (rounded-lg, rounded-xl, rounded-2xl, rounded-full)
- Backdrop blur effects (backdrop-blur)
- Soft blur shadows (shadow-[0_Npx_Npx])
- Uniform, perfectly aligned layouts
- Single font family throughout
- NEVER mix style={{ transform: "rotate(Ndeg)" }} with Tailwind hover/group-hover transform classes -- this causes transform conflicts where the inline style overrides Tailwind's CSS variables. Always use rotate-[Ndeg] Tailwind arbitrary class instead.
## Must Follow
- Aged paper background bg-[#f5f0e8]
- Dark charcoal #2d2d2d for borders and text
- Hard offset shadows shadow-[Npx_Npx_0px_#color]
- Sharp corners rounded-sm or rounded-none
- Random rotation via Tailwind arbitrary class rotate-[0.5deg] to rotate-[2deg] (NOT inline style when hover transforms are also applied)
- Mix font families: font-serif, font-sans, font-mono across sections
- Thick borders border-2 border-[#2d2d2d]
- Wrap interactive cards in group div so washi tape can respond via group-hover
## Color Palette
Primary:
- Dark Charcoal: #2d2d2d
- Aged Paper: #f5f0e8
- Cut Red: #e74c3c
- Magazine Blue: #3498db
- Paste Yellow: #f39c12
- Scrap Purple: #9b59b6
## Animation & Interaction Rules
- Paper Lift: On hover, elements should feel physically raised. Use hover:scale-[1.02] combined with a rotation change and shadow expansion. This simulates a piece of paper being pinched up off a surface.
- Tape Parallax: The washi tape decoration on a card should react slightly differently from the card itself. Wrap the whole component in a group div. The tape has group-hover:-translate-y-1 group-hover:rotate-[6deg], while the card has group-hover:-translate-y-2 group-hover:-rotate-[1deg].
- Desk Press: On :active, the shadow must sharply collapse and the element shifts slightly down, simulating pressing a paper scrap firmly onto a corkboard.
- Snappy Easing: Use duration-200 ease-out or duration-300 ease-out for all paper interactions.
- Transform Rules: ALWAYS use Tailwind rotate-[Xdeg] arbitrary class for initial rotation. NEVER use style={{ transform: "rotate(Xdeg)" }} on elements that also use Tailwind hover/group-hover transforms.Component Templates
纸片剪切按钮:hover 时纸片掀起(scale-105 + 旋转变化 + 阴影扩张),active 时被按压桌面(缩小 + 阴影骤减)
Frontend Readiness
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%
FallbackUI 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
/* Collage Art Global Styles */
:root {
--col-dark: #2d2d2d;
--col-paper: #f5f0e8;
--col-red: #e74c3c;
--col-blue: #3498db;
--col-yellow: #f39c12;
--col-purple: #9b59b6;
}
/* Torn paper edge clip-path */
.col-torn {
clip-path: polygon(
0% 3%, 5% 0%, 12% 4%, 20% 1%, 28% 3%, 35% 0%, 42% 2%, 50% 0%,
58% 3%, 65% 1%, 72% 4%, 80% 0%, 88% 2%, 95% 0%, 100% 3%,
100% 97%, 95% 100%, 88% 98%, 80% 100%, 72% 97%, 65% 100%,
58% 98%, 50% 100%, 42% 97%, 35% 100%, 28% 98%, 20% 100%,
12% 97%, 5% 100%, 0% 98%
);
}
/* Washi tape decoration - striped repeating-linear-gradient */
.col-tape {
position: relative;
}
.col-tape::before {
content: "";
position: absolute;
top: -10px;
left: 20%;
width: 80px;
height: 20px;
background: repeating-linear-gradient(
90deg,
var(--col-yellow) 0px,
var(--col-yellow) 3px,
rgba(255,255,255,0.3) 3px,
rgba(255,255,255,0.3) 6px
);
opacity: 0.7;
transform: rotate(2deg);
}
/* Paper lift — hover 时上浮,active 时按压 */
.col-paper-lift {
transition: all 0.2s ease-out;
}
.col-paper-lift:hover {
transform: translateY(-8px) scale(1.02) rotate(-1deg);
box-shadow: 12px 12px 0 var(--col-red);
}
.col-paper-lift:active {
transform: translateY(2px) scale(0.98) rotate(1deg);
box-shadow: 2px 2px 0 var(--col-red);
}
/* Stamp/postal mark decoration */
.col-stamp {
border: 3px dashed var(--col-dark);
padding: 8px;
position: relative;
}
.col-stamp::after {
content: "APPROVED";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(12deg);
font-family: 'Courier New', monospace;
font-size: 12px;
font-weight: 700;
color: var(--col-red);
opacity: 0.3;
}
/* Newspaper column text */
.col-newspaper {
font-family: 'Times New Roman', serif;
line-height: 1.2;
columns: 2;
column-gap: 20px;
column-rule: 1px solid var(--col-dark);
}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
Collage Art style originates from the mixed-media traditions of Dadaism and Pop Art, emphasizing the collision and fusion of different materials, fonts, and images.
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 | /#2d2d2d / #f5f0e8 | 12.14:1 | ||
| Secondary text on background | /#e74c3c / #f5f0e8 | 3.37:1 | ||
| Muted text on background | /#2d2d2d / #f5f0e8 | 12.14:1 | ||
| Text on secondary background | /#2d2d2d / #ebe4d8 | 10.9:1 | ||
| Secondary text on secondary | /#e74c3c / #ebe4d8 | 3.02:1 | ||
| Button primary | /#ffffff / #e74c3c | 3.82:1 | ||
| Text on accent 1 | /#2d2d2d / #e74c3c | 3.6:1 | ||
| Alt text on accent 1 | /#e74c3c / #e74c3c | 1:1 | ||
| Text on accent 2 | /#2d2d2d / #3498db | 4.37:1 | ||
| Alt text on accent 2 | /#e74c3c / #3498db | 1.21:1 | ||
| Text on accent 3 | /#2d2d2d / #f39c12 | 6.28:1 | ||
| Alt text on accent 3 | /#e74c3c / #f39c12 | 1.74:1 | ||
| Text on accent 4 | /#2d2d2d / #9b59b6 | 2.95:1 | ||
| Alt text on accent 4 | /#e74c3c / #9b59b6 | 1.22:1 |
Readability
Score
87/100
Font Size
text-sm md:text-base
Font Weight
font-serif font-bold uppercase tracking-wider
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.