This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
Design Thinking
Before coding, understand the context and commit to a BOLD aesthetic direction:
- Purpose: What problem does this interface solve? Who uses it?
- Tone: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
- Constraints: Technical requirements (framework, performance, accessibility).
- Differentiation: What makes this UNFORGETTABLE? What's the one thing someone will remember?
CRITICAL: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:
- Production-grade and functional
- Visually striking and memorable
- Cohesive with a clear aesthetic point-of-view
- Meticulously refined in every detail
Frontend Aesthetics Guidelines
Focus on:
- Typography: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
- Color & Theme: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant color with intentional accents. Consider gradients, but make them subtle and purposeful.
- Spacing & Layout: Generous whitespace creates luxury. Use CSS Grid and Flexbox for sophisticated layouts. Consider asymmetry for visual interest.
- Micro-interactions: Thoughtful hover states, transitions, and animations. Make interactions feel alive but not overwhelming. 200-400ms transitions feel natural.
- Visual Details: Subtle shadows, borders, and textures add depth. Consider backdrop-blur for modern glass effects. Rounded corners should be consistent throughout.
- Responsive Design: Mobile-first approach. Breakpoints at 640px, 768px, 1024px, 1280px. Touch targets minimum 44px.
Implementation Patterns
CSS Architecture
:root {
/* Colors */
--color-primary: #...;
--color-secondary: #...;
--color-background: #...;
--color-surface: #...;
--color-text: #...;
--color-text-muted: #...;
/* Typography */
--font-display: '...', serif;
--font-body: '...', sans-serif;
--font-mono: '...', monospace;
/* Spacing */
--space-xs: 0.25rem;
--space-sm: 0.5rem;
--space-md: 1rem;
--space-lg: 2rem;
--space-xl: 4rem;
/* Effects */
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
--transition: 200ms ease;
}
Animation Principles
- Entrance animations: fade + slight translate (20px max)
- Hover states: scale(1.02-1.05), color shifts, shadow elevation
- Loading states: skeleton screens over spinners
- Scroll animations: intersection observer, staggered reveals
Accessibility
- Semantic HTML elements
- ARIA labels where needed
- Focus states visible and styled
- Color contrast ratios (4.5:1 minimum)
- Reduced motion preference respected
Quality Checklist
Before completion, verify:
Output Format
Deliver complete, production-ready code:
- HTML structure (semantic, accessible)
- CSS (organized, using variables)
- JavaScript (if interactive elements needed)
- Usage instructions if complex
Focus on quality over quantity. A beautifully crafted component is better than a feature-complete but generic one.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: frontend-design-443description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics. Use when this capability is needed.4---56This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.78The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.910## Design Thinking1112Before coding, understand the context and commit to a BOLD aesthetic direction:13- **Purpose**: What problem does this interface solve? Who uses it?14- **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.15- **Constraints**: Technical requirements (framework, performance, accessibility).16- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?1718**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.1920Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:21- Production-grade and functional22- Visually striking and memorable23- Cohesive with a clear aesthetic point-of-view24- Meticulously refined in every detail2526## Frontend Aesthetics Guidelines2728Focus on:29- **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.30- **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant color with intentional accents. Consider gradients, but make them subtle and purposeful.31- **Spacing & Layout**: Generous whitespace creates luxury. Use CSS Grid and Flexbox for sophisticated layouts. Consider asymmetry for visual interest.32- **Micro-interactions**: Thoughtful hover states, transitions, and animations. Make interactions feel alive but not overwhelming. 200-400ms transitions feel natural.33- **Visual Details**: Subtle shadows, borders, and textures add depth. Consider backdrop-blur for modern glass effects. Rounded corners should be consistent throughout.34- **Responsive Design**: Mobile-first approach. Breakpoints at 640px, 768px, 1024px, 1280px. Touch targets minimum 44px.3536## Implementation Patterns3738### CSS Architecture39```css40:root {41 /* Colors */42 --color-primary: #...;43 --color-secondary: #...;44 --color-background: #...;45 --color-surface: #...;46 --color-text: #...;47 --color-text-muted: #...;4849 /* Typography */50 --font-display: '...', serif;51 --font-body: '...', sans-serif;52 --font-mono: '...', monospace;5354 /* Spacing */55 --space-xs: 0.25rem;56 --space-sm: 0.5rem;57 --space-md: 1rem;58 --space-lg: 2rem;59 --space-xl: 4rem;6061 /* Effects */62 --radius-sm: 4px;63 --radius-md: 8px;64 --radius-lg: 16px;65 --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);66 --shadow-md: 0 4px 6px rgba(0,0,0,0.1);67 --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);68 --transition: 200ms ease;69}70```7172### Animation Principles73- Entrance animations: fade + slight translate (20px max)74- Hover states: scale(1.02-1.05), color shifts, shadow elevation75- Loading states: skeleton screens over spinners76- Scroll animations: intersection observer, staggered reveals7778### Accessibility79- Semantic HTML elements80- ARIA labels where needed81- Focus states visible and styled82- Color contrast ratios (4.5:1 minimum)83- Reduced motion preference respected8485## Quality Checklist8687Before completion, verify:88- [ ] Distinctive visual identity (not generic)89- [ ] Consistent design system applied90- [ ] Responsive across breakpoints91- [ ] Smooth interactions and transitions92- [ ] Accessible (keyboard, screen reader)93- [ ] Performance optimized (no layout shifts)94- [ ] Cross-browser compatible95- [ ] Dark mode support (if applicable)9697## Output Format9899Deliver complete, production-ready code:1001. HTML structure (semantic, accessible)1012. CSS (organized, using variables)1023. JavaScript (if interactive elements needed)1034. Usage instructions if complex104105Focus on quality over quantity. A beautifully crafted component is better than a feature-complete but generic one.106107---108> Converted and distributed by [TomeVault](https://tomevault.io/claim/fabriqaai) — claim your Tome and manage your conversions.109<!-- tomevault:4.0:skill_md:2026-04-11 -->