Back to list
orient-bot

frontend-design

by orient-bot

Orient - AI Agent Platform

5🍴 0📅 Jan 24, 2026

SKILL.md


name: frontend-design description: Frontend design system for the Orient. Use this skill when doing ANY UI work including creating components, building pages, adding forms, styling elements, or working with buttons, cards, modals, inputs, tables, or layouts. Triggers on "create component", "build page", "add form", "button", "card", "modal", "style", "layout", "UI", "frontend", "display data", "show results", "dashboard", or any visual/interface development task.

Frontend Design System

This project uses a developer-grade design aesthetic inspired by Vercel, Linear, and shadcn/ui.

Core Principles

  1. Black & White Dominant - Color only for semantic status (success/error/warning)
  2. High Information Density - Clean but compact
  3. Border-Based Hierarchy - Avoid heavy shadows
  4. Monospace for Data - IDs, dates, timestamps, code always in font-mono

Tech Stack

  • React + Vite for apps
  • Tailwind CSS v3.4+ for styling
  • CSS Variables with semantic classes (bg-background not bg-white)
  • Dark Mode First - Class-based via .dark on <html>

Semantic Color Tokens

NEVER use hardcoded colors. Use semantic tokens:

TokenPurpose
bg-backgroundPage background
text-foregroundPrimary text
bg-cardCards/panels
border-borderAll borders
bg-mutedSecondary backgrounds
text-muted-foregroundSecondary text, labels
bg-primaryPrimary actions
text-primary-foregroundText on primary

Typography

  • UI Text: font-sans (Inter)
  • Data/Code: font-mono (JetBrains Mono) - MANDATORY for:
    • IDs, UUIDs, hashes
    • Dates and timestamps
    • Status codes
    • Logs/console output
    • Metric values

Component Patterns

Buttons

// Primary
<button className="h-9 px-4 rounded-md bg-primary text-primary-foreground text-sm font-medium hover:bg-primary/90">
  Action
</button>

// Secondary
<button className="h-9 px-4 rounded-md bg-secondary text-secondary-foreground text-sm font-medium hover:bg-secondary/80">
  Cancel
</button>

// Ghost (for icons/menus)
<button className="h-9 px-3 rounded-md hover:bg-accent hover:text-accent-foreground">
  <Icon />
</button>

Cards

<div className="rounded-xl border border-border bg-card text-card-foreground shadow-sm">
  <div className="p-6 pb-2">
    <h3 className="font-semibold text-foreground">Title</h3>
    <span className="font-mono text-xs text-muted-foreground">ID: abc123</span>
  </div>
  <div className="p-6 pt-0">{/* Content */}</div>
</div>

Inputs

<input
  className="h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm focus-visible:ring-1 focus-visible:ring-ring"
  placeholder="Enter value..."
/>

Tables

<div className="rounded-md border border-border">
  <table className="w-full">
    <thead>
      <tr className="border-b border-border bg-muted/50">
        <th className="p-4 text-left text-xs uppercase font-medium text-muted-foreground">
          Column
        </th>
      </tr>
    </thead>
    <tbody>
      <tr className="border-b border-border hover:bg-muted/50">
        <td className="p-4 align-middle font-mono text-sm">value</td>
      </tr>
    </tbody>
  </table>
</div>

Quick Reference

ElementClasses
Page bgbg-background
Cardrounded-xl border border-border bg-card shadow-sm
Button heighth-9
Border radiusrounded-md (6px)
Text sizestext-sm (body), text-xs (labels)
Monospacefont-mono
Muted texttext-muted-foreground

Do's and Don'ts

DO:

  • Use border-border for all dividing lines
  • Use text-muted-foreground for metadata/labels
  • Use font-mono for any data values
  • Ensure sufficient contrast

DON'T:

  • Use shadows to define hierarchy (use borders)
  • Use rounded-full for buttons (except icon-only)
  • Mix serif fonts
  • Use hardcoded colors like bg-white or bg-gray-100

Reference Files

For detailed information:

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon