component-interface-design

安装量: 59
排名: #12623

安装

npx skills add https://github.com/qodex-ai/ai-agent-skills --skill component-interface-design

Shadcn UI Designer Core Design Prompt

When designing any UI, apply this philosophy:

"Design a modern, clean UI following Shadcn principles: apply minimalism with ample white space and simple sans-serif typography; use strategic, subtle shadows for depth and hierarchy; ensure accessibility with high-contrast neutrals and scalable elements; provide beautiful defaults for buttons, cards, and forms that compose modularly; incorporate fluid, non-intrusive animations; maintain a professional palette of soft grays, whites, and minimal accents like purple; output as responsive, customizable React code with Tailwind CSS."

Design Rules 1. Typography Rule Limit to 2-3 font weights and sizes per screen Use Inter or system fonts for consistency

Title

Description

  1. Spacing Rule 4px-based scale: 4px, 8px, 16px, 24px, 32px Tailwind utilities: p-1, p-2, p-4, p-6, p-8
...
  1. Color Rule Base on OKLCH for perceptual uniformity Use 50-950 scale grays (background, foreground, muted) Subtle accents at 10% opacity to avoid visual noise
    Subtle accent

  1. Shadow Rule 3 levels only: shadow-sm: Subtle lift (0 1px 2px) - for cards shadow-md: Medium depth (0 4px 6px) - for dropdowns shadow-lg: High elevation (0 10px 15px) - for modals

  2. Animation Rule 200-300ms durations ease-in-out curves for transitions Subtle feedback only (hovers, state changes) - no decorative flourishes

  3. Accessibility Rule ARIA labels on all interactive elements WCAG 2.1 AA contrast ratios (4.5:1 minimum) Keyboard-focus styles matching hover states Semantic HTML structure <button aria-label="Submit form" className="focus:ring-2 focus:ring-primary focus:outline-none"

    Submit

Workflow 1. Interview User (if details not provided) Scope: Full page, section, or specific component? Type: Dashboard, form, card, modal, table? Target file: Where should this be implemented? Requirements: Features, interactions, data to display? 2. Design & Implement Match existing design - align with current UI patterns in the app Build UI first - complete visual interface before adding logic Modular components - break large pages into focused, reusable pieces Apply all 6 rules above strictly Verify accessibility - keyboard navigation, contrast, ARIA labels Test responsiveness - mobile, tablet, desktop 3. Component Structure Pattern import { Button } from "@/components/ui/button" import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"

export function MyComponent() { return (

Page Title

  <main className="grid gap-4">
    <Card className="shadow-sm">
      <CardHeader>
        <CardTitle>Section</CardTitle>
      </CardHeader>
      <CardContent>
        {/* Content */}
      </CardContent>
    </Card>
  </main>
</div>

) }

  1. Quality Checklist

Before completing, verify:

Uses shadcn/ui components where applicable 2-3 font weights/sizes max per screen 4px-based spacing throughout Theme color variables (no hardcoded colors) 3 shadow levels max, strategically applied Animations 200-300ms with ease-in-out ARIA labels on interactive elements WCAG AA contrast ratios (4.5:1 min) Keyboard focus styles implemented Mobile-first responsive design Modular, reusable code structure Common Patterns Dashboard Page

Dashboard

Overview of metrics

{stats.map(stat => ( {stat.title}
{stat.value}
))}

Form Pattern

Data Table Pattern Recent Orders

Order ID Customer Status {orders.map(order => ( {order.id} {order.customer} {order.status} ))}

Best Practices Match existing design - new designs align with current UI screens and components UI-first approach - complete visual interface before adding business logic Modular code - small, focused, reusable components (avoid monolithic pages) Token efficiency - concise, well-structured code Consistency - follow existing color, spacing, and typography patterns Composability - build with shadcn's philosophy of small components that work together Common Shadcn Components Layout: Card, Tabs, Sheet, Dialog, Popover Forms: Input, Textarea, Select, Checkbox, Radio, Switch, Label Buttons: Button, Toggle, ToggleGroup Display: Badge, Avatar, Separator, Skeleton, Table Feedback: Alert, Toast, Progress Navigation: NavigationMenu, Dropdown, Command References Shadcn UI Tailwind CSS v4 WCAG 2.1

返回排行榜