Awesome-omni-skill distinctive-frontend-design
Creates distinctive, production-grade frontend interfaces that avoid generic AI aesthetics. Guides bold aesthetic direction, typography, color, motion, and spatial composition for memorable UI. Use when building frontend components, pages, applications, or interfaces, or when the user asks for UI/UX design, styling, or visually striking interfaces.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/distinctive-frontend-design" ~/.claude/skills/diegosouzapw-awesome-omni-skill-distinctive-frontend-design && rm -rf "$T"
skills/development/distinctive-frontend-design/SKILL.mdDistinctive Frontend Design
Build frontend interfaces with genuine design intent. Every interface should feel like it was crafted by a human designer with a strong point of view — never like default AI output.
Project Context
This is a Next.js App Router project with the following stack:
- Styling: Tailwind CSS v4 (CSS-first config via
in@theme inline
)globals.css - Fonts: Currently uses Geist Sans & Geist Mono via
(defined innext/font/google
)app/layout.tsx - UI Components: Custom components in
(Button, Input, Select, Dropdown, Textarea, Alert) — usescomponents/ui/
utility for class merging, consistent variant/size patternscn() - Icons:
(Material UI icons package)@mui/icons-material - Animations: CSS transitions only (no framer-motion installed). Consider adding
(framer-motion) for complex animations.motion - Theme: Light mode only (
), CSS variables atcolor-scheme: light:root - Auth: Clerk with Spanish localization (
)lang="es" - Color system:
,--background: #ffffff
, blue primary (--foreground: #171717
/blue-500
), domain-specific color maps (categories, statuses, deal stages)blue-600 - Layout pattern:
wrapper withAppLayout
+PageHeader
, white cards onPageContent
, mobile-responsive with bottom navbg-gray-50/30
Working Within This Stack
When building new interfaces in this project:
- Fonts: Add new display fonts via
in the component or layout that needs them. Set as CSS variable and reference in Tailwind via arbitrary valuesnext/font/google
or extendfont-[var(--font-name)]
.@theme - Tailwind v4: Extend colors/tokens in
usingglobals.css
— no JS config file.@theme inline { } - Components: Follow existing patterns —
for class merging, variant/size props, consistent API shape. Import fromcn()
.@/components/ui/ - CSS custom properties: Define at
in:root
or scoped to component.globals.css - Animations: Use CSS
+ Tailwind@keyframes
for simple cases. For orchestrated sequences, suggest installinganimate-*
(framer-motion).motion
Design Thinking (Before Code)
Before writing any code, spend time on these four questions:
- Purpose: What problem does this solve? Who is the audience?
- Tone: Commit to a BOLD aesthetic direction. Pick one and go deep:
- Brutally minimal | Maximalist chaos | Retro-futuristic | Organic/natural
- Luxury/refined | Playful/toy-like | Editorial/magazine | Brutalist/raw
- Art deco/geometric | Soft/pastel | Industrial/utilitarian | Neo-grotesque
- Typographic-forward | Glassmorphic depth | Monochrome drama | Warm analog
- Use these as inspiration — design something true to the chosen direction.
- Constraints: Performance targets, accessibility, consistency with existing app pages.
- Differentiator: What single element makes this UNFORGETTABLE?
Output a brief design brief (2-4 sentences) before implementation. Example:
"Dashboard for creative professionals. Art deco geometric aesthetic: sharp angles, gold accent on deep navy, Playfair Display headings with DM Sans body. Differentiator: animated geometric border patterns that respond to data state."
Core Aesthetic Principles
Typography
Choose fonts that have genuine character. Pair a distinctive display font with a refined body font.
- For curated pairings organized by aesthetic, see font-pairings.md
- Load via
— set as CSS variable, use in Tailwind classesnext/font/google - Set a clear typographic scale (e.g., 1.25 or 1.333 ratio)
- Use
,letter-spacing
, andline-height
intentionallytext-transform
NEVER use: Inter, Roboto, Arial, Open Sans, Lato, Geist, system-ui as display/heading fonts. These are generic defaults. Geist is fine for body/UI text since it's the project default, but headings and hero text deserve character.
Color & Theme
Commit fully. Dominant colors with sharp accents beat timid, evenly-distributed palettes.
- Define palette as CSS custom properties at
or scoped via:root@theme inline - Use a clear hierarchy: 1 dominant, 1-2 accents, neutrals
- This project is light-mode only — avoid pure
; use warm or cool off-whites#fff - Respect existing color semantics (blue primary for actions, status colors for states)
- New pages/features can have their own sub-palette while staying coherent with the app
Motion & Interaction
Prioritize high-impact orchestrated moments over scattered micro-interactions.
- Page load: Staggered reveals using
on sequential elementsanimation-delay - Scroll: Intersection Observer for scroll-triggered entrances
- Hover states: Surprising, delightful transitions (scale, color shift, shadow lift, underline animations)
- CSS animations: Use
in global CSS or component-scoped styles@keyframes - For complex motion: Consider adding
(framer-motion) —motionnpm install motion - One well-orchestrated sequence > many small animations
Spatial Composition
Break predictable layouts. Not every design needs to be wild — but every design needs intentional spatial choices.
- Asymmetric grids, overlapping elements, diagonal flow
- Grid-breaking hero elements or pull-quotes
- Generous negative space OR controlled density — both are valid; pick one
- Consider viewport-relative sizing (
,dvh
,vw
)clamp() - Work within the existing
>AppLayout
+PageHeader
structure when building app pagesPageContent
Backgrounds & Visual Depth
Create atmosphere. Solid flat colors are a missed opportunity.
- Gradient meshes, noise/grain textures, geometric patterns
- Layered transparencies and backdrop-filter effects
- Dramatic shadows (layered
stacks, not single default shadows)box-shadow - Decorative borders, custom dividers, ornamental elements
- Subtle background patterns or textures that reinforce the aesthetic
Anti-Patterns (AI Slop Checklist)
NEVER produce interfaces with these characteristics:
| Element | Generic (Avoid) | Distinctive (Do This) |
|---|---|---|
| Fonts | Inter, Roboto, Arial, Geist for headings | Distinctive display + refined body pairing |
| Colors | Purple gradient on white, blue-to-purple | Context-specific palette with clear hierarchy |
| Shadows | / single box-shadow | Layered shadow stacks or dramatic directional |
| Borders | | Contextual: sharp edges, ornamental, or none |
| Layout | Card grid, centered hero, symmetric | Asymmetric, overlapping, grid-breaking |
| Spacing | Uniform padding everywhere | Rhythmic variation, generous whitespace |
| Backgrounds | Solid white/gray | Textured, gradient, patterned, atmospheric |
| Animations | Fade-in-up on everything | Orchestrated sequences with intentional timing |
Implementation Guidelines
Match Complexity to Vision
- Maximalist designs: Elaborate code, extensive animations, layered effects, decorative elements
- Minimal/refined designs: Restraint and precision in spacing, typography, subtle details
- Elegance = executing the vision well, regardless of complexity level
Code Quality
- Production-grade: no placeholder content, no TODO comments, no broken states
- Semantic HTML, accessible by default (
, focus states, contrast ratios)aria-labels - CSS custom properties for theming consistency
- Responsive: mobile-first, test mental model across breakpoints
- Follow existing component API conventions (
, variant props, size props)cn()
Tailwind v4 in This Project
- Extend tokens in
viaglobals.css@theme inline { --color-*: ...; --font-*: ...; } - Use arbitrary values
liberally to break out of default Tailwind system[...] - Layer custom CSS (in
or component-scoped files) for effects Tailwind can't expressglobals.css - For new fonts: define in
, set CSS variable, reference asnext/font/googlefont-[var(--font-name)]
New Component Pattern
Follow existing conventions when creating new UI components:
import { cn } from '@/lib/utils'; interface Props { variant?: 'primary' | 'secondary' | 'ghost'; size?: 'sm' | 'md' | 'lg'; className?: string; children: React.ReactNode; } export function MyComponent({ variant = 'primary', size = 'md', className, children }: Props) { return ( <div className={cn( 'base-classes-here', variant === 'primary' && 'primary-classes', size === 'md' && 'md-classes', className )}> {children} </div> ); }
Variety Mandate
NEVER converge on the same choices across different generations:
- Use different font families each time
- Vary aesthetic directions (don't always pick the same style)
- Different color palettes, layout approaches, animation strategies
Each interface should feel like it came from a different designer with a different perspective.
Additional Resources
- For curated font pairings by aesthetic, see font-pairings.md
- For detailed aesthetic directions with visual descriptions, see aesthetics-reference.md