back to gallery
design language·optical-archive-recovery-console
Optical Archive Recovery Console
A portable design language for agents: download the markdown first, then inspect the preview, tokens, and rules as needed.
Download DESIGN.md
Portable DESIGN.md source of truth for most agents and apps.
the spec
specification
philosophy
not set
tokens
not set
rules
not set
layout
not set
guidance
not set
katagami spec
# Optical Archive Recovery Console
DESIGN.md
--- version: "alpha" name: "Optical Archive Recovery Console" description: "Agent-curated design language exported from Katagami as DESIGN.md." --- # Optical Archive Recovery Console ## Overview Optical Archive Recovery Console is an agent-curated design language from Katagami. ## shadcn/ui Usage When the target app uses shadcn/ui, copy DESIGN.md with shadcn instead of the plain DESIGN.md. It contains the same Katagami design-language source plus the shadcn/ui primitives, imports, theme variables, component recipes, and preview-shot guidance. DESIGN.md with shadcn: `/language/en-019e05c2-e850-7b01-bdb6-9ef8c97de7fb/DESIGN.with-shadcn.md`. The shadcn page also exposes optional machine-readable files for automation, but the human-facing handoff is DESIGN.md with shadcn. Install recommended primitives with `npx shadcn@latest add button card input textarea select dialog sheet tabs badge separator checkbox switch slider tooltip dropdown-menu table`. Use these primitives in shadcn apps: - button - card - input - textarea - select - dialog - sheet - tabs - badge - separator - checkbox - switch - slider - tooltip - dropdown-menu - table Implementation rule for agents: import shadcn primitives from `@/components/ui/*`, apply the generated CSS variables first, then compose the language-specific recipes from the companion MD. Katagami remains the source of truth; shadcn names are the implementation surface.
shadcn/ui theme
```json
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "optical-archive-recovery-console",
"type": "registry:theme",
"title": "Optical Archive Recovery Console shadcn Theme",
"cssVars": {
"theme": {},
"light": {
"background": "#F7F8F6",
"foreground": "#15171A",
"card": "#FFFFFF",
"card-foreground": "#15171A",
"popover": "#FFFFFF",
"popover-foreground": "#15171A",
"primary": "#111318",
"primary-foreground": "#ffffff",
"secondary": "#E9EDF0",
"secondary-foreground": "#111111",
"muted": "#6D747C",
"muted-foreground": "#15171A",
"accent": "#2D6FB8",
"accent-foreground": "#ffffff",
"destructive": "#8F4F4A",
"border": "#1B1D21",
"input": "#1B1D21",
"ring": "#2D6FB8",
"chart-1": "#111318",
"chart-2": "#E9EDF0",
"chart-3": "#2D6FB8",
"chart-4": "#4D7567",
"chart-5": "#A87938",
"sidebar": "#FFFFFF",
"sidebar-foreground": "#15171A",
"sidebar-primary": "#111318",
"sidebar-primary-foreground": "#ffffff",
"sidebar-accent": "#2D6FB8",
"sidebar-accent-foreground": "#ffffff",
"sidebar-border": "#1B1D21",
"sidebar-ring": "#2D6FB8",
"radius": "4px"
},
"dark": {
"background": "#0f1115",
"foreground": "#f8fafc",
"card": "#181b22",
"card-foreground": "#f8fafc",
"popover": "#181b22",
"popover-foreground": "#f8fafc",
"primary": "#111318",
"primary-foreground": "#ffffff",
"secondary": "#252a33",
"secondary-foreground": "#f8fafc",
"muted": "#252a33",
"muted-foreground": "#a1a1aa",
"accent": "#2D6FB8",
"accent-foreground": "#ffffff",
"destructive": "#8F4F4A",
"border": "#303642",
"input": "#303642",
"ring": "#2D6FB8",
"chart-1": "#111318",
"chart-2": "#E9EDF0",
"chart-3": "#2D6FB8",
"chart-4": "#4D7567",
"chart-5": "#A87938",
"sidebar": "#181b22",
"sidebar-foreground": "#f8fafc",
"sidebar-primary": "#111318",
"sidebar-primary-foreground": "#ffffff",
"sidebar-accent": "#2D6FB8",
"sidebar-accent-foreground": "#ffffff",
"sidebar-border": "#303642",
"sidebar-ring": "#2D6FB8",
"radius": "4px"
}
},
"meta": {
"source": "katagami",
"languageId": "en-019e05c2-e850-7b01-bdb6-9ef8c97de7fb",
"slug": "optical-archive-recovery-console",
"componentManifest": [
"button",
"card",
"input",
"textarea",
"select",
"dialog",
"sheet",
"tabs",
"badge",
"separator",
"checkbox",
"switch",
"slider",
"tooltip",
"dropdown-menu",
"table"
],
"installCommand": "npx shadcn@latest add button card input textarea select dialog sheet tabs badge separator checkbox switch slider tooltip dropdown-menu table",
"nativeTokenNames": {
"radii": [
"full",
"lg",
"md",
"none",
"sm"
],
"colors": [
"accent",
"background",
"border",
"error",
"info",
"muted",
"primary",
"secondary",
"success",
"surface",
"text",
"warning"
],
"motion": [
"duration",
"easing",
"philosophy"
],
"borders": [
"accent_width",
"character",
"default_width",
"style"
],
"shadows": [
"lg",
"md",
"sm"
],
"spacing": [
"base",
"scale"
],
"surfaces": [
"bg_pattern",
"card_style",
"treatment"
],
"typography": [
"base_size",
"body_font",
"google_fonts_url",
"heading_font",
"letter_spacing",
"line_height",
"mono_font",
"scale_ratio"
]
}
}
}
```in the wild
embodiments
the full element showcase
embodiment · optical-archive-recovery-console
DESIGN.md
at a glance
shadcn/ui
implementation kit
recommendedcompatibility fallback
DESIGN.md with shadcn
Copy this when the target app uses shadcn/ui. It packages the Katagami DESIGN.md context with the install list, theme variables, component recipes, preview-shot contract, and starter TSX in one Markdown companion.
advanced implementation filesoptional machine-readable theme, CSS, TSX starter, recipes, and preview contract
shadcn add
npx shadcn@latest add button card input textarea select dialog sheet tabs badge separator checkbox switch slider tooltip dropdown-menu tabletheme css
:root {
--background: #F7F8F6;
--foreground: #15171A;
--card: #FFFFFF;
--card-foreground: #15171A;
--popover: #FFFFFF;
--popover-foreground: #15171A;
--primary: #111318;
--primary-foreground: #ffffff;
--secondary: #E9EDF0;
--secondary-foreground: #111111;
--muted: #6D747C;
--muted-foreground: #15171A;
--accent: #2D6FB8;
--accent-foreground: #ffffff;
--destructive: #8F4F4A;
--border: #1B1D21;
--input: #1B1D21;
--ring: #2D6FB8;
--chart-1: #111318;
--chart-2: #E9EDF0;
--chart-3: #2D6FB8;
--chart-4: #4D7567;
--chart-5: #A87938;
--sidebar: #FFFFFF;
--sidebar-foreground: #15171A;
--sidebar-primary: #111318;
--sidebar-primary-foreground: #ffffff;
--sidebar-accent: #2D6FB8;
--sidebar-accent-foreground: #ffffff;
--sidebar-border: #1B1D21;
--sidebar-ring: #2D6FB8;
--radius: 4px;
}
.dark {
--background: #0f1115;
--foreground: #f8fafc;
--card: #181b22;
--card-foreground: #f8fafc;
--popover: #181b22;
--popover-foreground: #f8fafc;
--primary: #111318;
--primary-foreground: #ffffff;
--secondary: #252a33;
--secondary-foreground: #f8fafc;
--muted: #252a33;
--muted-foreground: #a1a1aa;
--accent: #2D6FB8;
--accent-foreground: #ffffff;
--destructive: #8F4F4A;
--border: #303642;
--input: #303642;
--ring: #2D6FB8;
--chart-1: #111318;
--chart-2: #E9EDF0;
--chart-3: #2D6FB8;
--chart-4: #4D7567;
--chart-5: #A87938;
--sidebar: #181b22;
--sidebar-foreground: #f8fafc;
--sidebar-primary: #111318;
--sidebar-primary-foreground: #ffffff;
--sidebar-accent: #2D6FB8;
--sidebar-accent-foreground: #ffffff;
--sidebar-border: #303642;
--sidebar-ring: #2D6FB8;
--radius: 4px;
}
tsx starter
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Tabs, TabsList, TabsTrigger } from "@/components/ui/tabs";
export function OpticalArchiveRecoveryConsoleShadcnKit() {
return (
<section className="grid gap-4 rounded-[var(--radius)] border bg-background p-4 text-foreground">
<div className="flex items-start justify-between gap-4">
<div>
<Badge variant="outline">shadcn/ui</Badge>
<h2 className="mt-3 text-2xl font-semibold tracking-tight">Optical Archive Recovery Console</h2>
<p className="mt-1 max-w-xl text-sm text-muted-foreground">
Use the Katagami registry theme, then compose these shadcn primitives
with the language-specific component recipes.
</p>
</div>
<Button>Apply theme</Button>
</div>
<Tabs defaultValue="components">
<TabsList>
<TabsTrigger value="components">Components</TabsTrigger>
<TabsTrigger value="states">States</TabsTrigger>
<TabsTrigger value="export">Export</TabsTrigger>
</TabsList>
</Tabs>
<Card>
<CardHeader>
<CardTitle>Component recipe</CardTitle>
<CardDescription>
Replace this starter content with the agent-authored product scene
from components.md and preview-shots.json.
</CardDescription>
</CardHeader>
<CardContent className="grid gap-3 sm:grid-cols-[1fr_auto]">
<Input defaultValue="Tokenized shadcn surface" aria-label="Recipe name" />
<Button variant="secondary">Preview state</Button>
</CardContent>
<CardFooter className="justify-between">
<Badge>Ready</Badge>
<Button variant="outline">Copy recipe</Button>
</CardFooter>
</Card>
</section>
);
}
theme JSONcompatibility fallback
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "optical-archive-recovery-console",
"type": "registry:theme",
"title": "Optical Archive Recovery Console shadcn Theme",
"cssVars": {
"theme": {},
"light": {
"background": "#F7F8F6",
"foreground": "#15171A",
"card": "#FFFFFF",
"card-foreground": "#15171A",
"popover": "#FFFFFF",
"popover-foreground": "#15171A",
"primary": "#111318",
"primary-foreground": "#ffffff",
"secondary": "#E9EDF0",
"secondary-foreground": "#111111",
"muted": "#6D747C",
"muted-foreground": "#15171A",
"accent": "#2D6FB8",
"accent-foreground": "#ffffff",
"destructive": "#8F4F4A",
"border": "#1B1D21",
"input": "#1B1D21",
"ring": "#2D6FB8",
"chart-1": "#111318",
"chart-2": "#E9EDF0",
"chart-3": "#2D6FB8",
"chart-4": "#4D7567",
"chart-5": "#A87938",
"sidebar": "#FFFFFF",
"sidebar-foreground": "#15171A",
"sidebar-primary": "#111318",
"sidebar-primary-foreground": "#ffffff",
"sidebar-accent": "#2D6FB8",
"sidebar-accent-foreground": "#ffffff",
"sidebar-border": "#1B1D21",
"sidebar-ring": "#2D6FB8",
"radius": "4px"
},
"dark": {
"background": "#0f1115",
"foreground": "#f8fafc",
"card": "#181b22",
"card-foreground": "#f8fafc",
"popover": "#181b22",
"popover-foreground": "#f8fafc",
"primary": "#111318",
"primary-foreground": "#ffffff",
"secondary": "#252a33",
"secondary-foreground": "#f8fafc",
"muted": "#252a33",
"muted-foreground": "#a1a1aa",
"accent": "#2D6FB8",
"accent-foreground": "#ffffff",
"destructive": "#8F4F4A",
"border": "#303642",
"input": "#303642",
"ring": "#2D6FB8",
"chart-1": "#111318",
"chart-2": "#E9EDF0",
"chart-3": "#2D6FB8",
"chart-4": "#4D7567",
"chart-5": "#A87938",
"sidebar": "#181b22",
"sidebar-foreground": "#f8fafc",
"sidebar-primary": "#111318",
"sidebar-primary-foreground": "#ffffff",
"sidebar-accent": "#2D6FB8",
"sidebar-accent-foreground": "#ffffff",
"sidebar-border": "#303642",
"sidebar-ring": "#2D6FB8",
"radius": "4px"
}
},
"meta": {
"source": "katagami",
"languageId": "en-019e05c2-e850-7b01-bdb6-9ef8c97de7fb",
"slug": "optical-archive-recovery-console",
"componentManifest": [
"button",
"card",
"input",
"textarea",
"select",
"dialog",
"sheet",
"tabs",
"badge",
"separator",
"checkbox",
"switch",
"slider",
"tooltip",
"dropdown-menu",
"table"
],
"installCommand": "npx shadcn@latest add button card input textarea select dialog sheet tabs badge separator checkbox switch slider tooltip dropdown-menu table",
"nativeTokenNames": {
"radii": [
"full",
"lg",
"md",
"none",
"sm"
],
"colors": [
"accent",
"background",
"border",
"error",
"info",
"muted",
"primary",
"secondary",
"success",
"surface",
"text",
"warning"
],
"motion": [
"duration",
"easing",
"philosophy"
],
"borders": [
"accent_width",
"character",
"default_width",
"style"
],
"shadows": [
"lg",
"md",
"sm"
],
"spacing": [
"base",
"scale"
],
"surfaces": [
"bg_pattern",
"card_style",
"treatment"
],
"typography": [
"base_size",
"body_font",
"google_fonts_url",
"heading_font",
"letter_spacing",
"line_height",
"mono_font",
"scale_ratio"
]
}
}
}
component recipescompatibility fallback
# Optical Archive Recovery Console shadcn/ui Components
Artifact: `component-recipes-v1`
Author: `katagami-ui-projection`
Language ID: `en-019e05c2-e850-7b01-bdb6-9ef8c97de7fb`
Slug: `optical-archive-recovery-console`
## Intent
A restrained forensic recovery language for damaged visual memory: frosted glass, paper-white light tables, archival blue selection acetate, and black registration marks make the interface feel like careful evidence alignment rather than cyber spectacle.
## Required primitives
- button
- card
- input
- textarea
- select
- dialog
- sheet
- tabs
- badge
- separator
- checkbox
- switch
- slider
- tooltip
- dropdown-menu
- table
Install with `npx shadcn@latest add button card input textarea select dialog sheet tabs badge separator checkbox switch slider tooltip dropdown-menu table`.
## Token cues
Colors:
{
"info": "#2D6FB8",
"text": "#15171A",
"error": "#8F4F4A",
"muted": "#6D747C",
"accent": "#2D6FB8",
"border": "#1B1D21",
"primary": "#111318",
"success": "#4D7567",
"surface": "#FFFFFF",
"warning": "#A87938",
"secondary": "#E9EDF0",
"background": "#F7F8F6"
}
Typography:
{
"base_size": "16px",
"body_font": "IBM Plex Sans",
"mono_font": "Fragment Mono",
"line_height": 1.52,
"scale_ratio": 1.22,
"heading_font": "Saira Condensed",
"letter_spacing": "-0.018em",
"google_fonts_url": "https://fonts.googleapis.com/css2?family=Fragment+Mono:ital@0;1&family=IBM+Plex+Sans:wght@400;500;600&family=Saira+Condensed:wght@500;600;700&display=swap"
}
## Visual character to preserve
- asymmetrical manga-panel grids with thin black 1px borders
- oversized registration margins and ruler gutters
- frosted vellum panels and translucent blue acetate selection
- calibration marks, checksum stamps, timestamp gutters, crop corners, loupe boxes, accession labels
- visible corruption through missing cells, drift bands, pressure marks, clipped image wells, paper noise
## ShadSync visual profile
{
"family": "paper-collage",
"material": "paper",
"contour": "default",
"border": "solid",
"underlay": false,
"grain": true,
"stickerBadges": true,
"motion": "lift-rotate",
"density": "balanced",
"accents": [
"primary",
"accent",
"secondary",
"muted"
]
}
## Signature component recipes
### Button
Use `Button` for primary, secondary, outline, and ghost actions. Primary actions must expose the language's strongest contrast pair, while secondary and ghost actions should preserve the surface treatment instead of falling back to default neutral SaaS styling.
### Card
Use `Card`, `CardHeader`, `CardContent`, `CardFooter`, and `CardAction` as the main composition frame. Cards should demonstrate the language's surface, border, hierarchy, and density rules rather than appearing as generic rounded rectangles.
### Input and Textarea
Use `Input` and `Textarea` with visible focus rings, field labels, validation states, and the language's rhythm. Forms should show real product content, not placeholder-only controls.
### Select, Tabs, and Table
Use `Select`, `Tabs`, and `Table` to prove navigation, filtering, and dense data states. The table should show row rhythm, separators, hover/focus states, and an empty or status state when the language calls for it.
### Dialog and Sheet
Use `Dialog` for centered decisions and `Sheet` for contextual editing. Both should inherit the language's spacing, border, overlay, and motion rules.
## Preview shots
- `application-shell`: dashboard or workspace shell with navigation, cards, forms, and state badges.
- `detail-editor`: focused editing flow using input, textarea, select, switch/checkbox, dialog or sheet, and action buttons.
- `data-operations`: table-heavy operational view with tabs, dropdown menu affordances, badges, and destructive/empty states.
- Each preview shot must include a renderable `scene` payload with concrete headline, description, actions, and rows/fields/stats for the UI preview.
## Implementation contract
- Start from local `ui/src/components/ui` shadcn-style primitives; do not create a second component system.
- Apply `/katagami/shadcn/optical-archive-recovery-console/registry-theme.json` variables, then use these recipes for composition and state design.
- Preserve Katagami token names as source metadata; shadcn semantic names are only the export surface.
- Do: Use archival blue as the only chromatic signal for selection, checksum, focus, and cold memory highlights.; Keep thin black crop marks, ruler ticks, panel borders, and timestamp gutters visible on every major surface.; Represent damaged data with missing cells, soft drift, occlusion, and low-contrast noise while preserving legible metadata.
- Do not: Do not use green matrix rain, neon magenta or cyan cyberpunk, skulls, red alert panels, or maximal terminal spam.; Do not make generic dashboards with rounded SaaS card grids, KPI tiles, or decorative line charts.; Do not hide uncertainty; avoid fake-perfect restoration, glossy hero art, character portraits, or anime fan art.
## Copy-paste component example
This generated starter proves the import shape. Production Katagami agents should replace it with a language-specific product composition.
```tsx
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Tabs, TabsList, TabsTrigger } from "@/components/ui/tabs";
export function OpticalArchiveRecoveryConsoleShadcnKit() {
return (
<section className="grid gap-4 rounded-[var(--radius)] border bg-background p-4 text-foreground">
<div className="flex items-start justify-between gap-4">
<div>
<Badge variant="outline">shadcn/ui</Badge>
<h2 className="mt-3 text-2xl font-semibold tracking-tight">Optical Archive Recovery Console</h2>
<p className="mt-1 max-w-xl text-sm text-muted-foreground">
Use the Katagami registry theme, then compose these shadcn primitives
with the language-specific component recipes.
</p>
</div>
<Button>Apply theme</Button>
</div>
<Tabs defaultValue="components">
<TabsList>
<TabsTrigger value="components">Components</TabsTrigger>
<TabsTrigger value="states">States</TabsTrigger>
<TabsTrigger value="export">Export</TabsTrigger>
</TabsList>
</Tabs>
<Card>
<CardHeader>
<CardTitle>Component recipe</CardTitle>
<CardDescription>
Replace this starter content with the agent-authored product scene
from components.md and preview-shots.json.
</CardDescription>
</CardHeader>
<CardContent className="grid gap-3 sm:grid-cols-[1fr_auto]">
<Input defaultValue="Tokenized shadcn surface" aria-label="Recipe name" />
<Button variant="secondary">Preview state</Button>
</CardContent>
<CardFooter className="justify-between">
<Badge>Ready</Badge>
<Button variant="outline">Copy recipe</Button>
</CardFooter>
</Card>
</section>
);
}
```
## Layout notes
{
"grid": "Twelve-column desktop light-table with off-axis manga panels, collapsing to two-column tablet contact sheets and single-column mobile evidence strips.",
"whitespace": "Use broad paper margins around dense evidence zones; blank areas are registration space, not empty SaaS padding.",
"breakpoints": "mobile 375px, tablet 768px, desktop 1200px, wide 1440px"
}
preview shotscompatibility fallback
{
"artifact": "katagami:shadcn-preview-shots",
"version": "preview-shots-v1",
"generator": "katagami-ui-compatibility-projection",
"generatedBy": "katagami-ui-projection",
"requiresVisualProfile": true,
"schema": "katagami:shadcn-preview-shots/renderable-v1",
"renderable": true,
"language": {
"id": "en-019e05c2-e850-7b01-bdb6-9ef8c97de7fb",
"name": "Optical Archive Recovery Console",
"slug": "optical-archive-recovery-console"
},
"installCommand": "npx shadcn@latest add button card input textarea select dialog sheet tabs badge separator checkbox switch slider tooltip dropdown-menu table",
"primitives": [
"button",
"card",
"input",
"textarea",
"select",
"dialog",
"sheet",
"tabs",
"badge",
"separator",
"checkbox",
"switch",
"slider",
"tooltip",
"dropdown-menu",
"table"
],
"identityNotes": [
"asymmetrical manga-panel grids with thin black 1px borders",
"oversized registration margins and ruler gutters",
"frosted vellum panels and translucent blue acetate selection",
"calibration marks, checksum stamps, timestamp gutters, crop corners, loupe boxes, accession labels",
"visible corruption through missing cells, drift bands, pressure marks, clipped image wells, paper noise"
],
"visualProfile": {
"family": "paper-collage",
"material": "paper",
"contour": "default",
"border": "solid",
"underlay": false,
"grain": true,
"stickerBadges": true,
"motion": "lift-rotate",
"density": "balanced",
"accents": [
"primary",
"accent",
"secondary",
"muted"
]
},
"shots": [
{
"id": "application-shell",
"title": "Application shell",
"viewport": "desktop",
"primitives": [
"button",
"card",
"input",
"select",
"tabs",
"badge",
"separator",
"table"
],
"composition": "A real product workspace with navigation, summary cards, filtering controls, and one dense content region.",
"mustShow": [
"primary and secondary actions",
"card hierarchy",
"filterable state",
"table or list density"
],
"avoid": [
"component inventory walls",
"placeholder-only content",
"generic rounded SaaS chrome"
],
"scene": {
"eyebrow": "workspace spread",
"headline": "Optical Archive Recovery Console launch room",
"description": "A product team workspace where navigation, filters, metrics, and dense rows carry the language's visible structure.",
"primaryAction": "Apply theme",
"secondaryAction": "Review states",
"stats": [
{
"label": "components",
"value": "16",
"tone": "accent"
},
{
"label": "states",
"value": "ready"
},
{
"label": "density",
"value": "balanced",
"tone": "warning"
}
],
"rows": [
{
"label": "Primary flow",
"value": "mapped",
"status": "active"
},
{
"label": "Token coverage",
"value": "semantic",
"status": "synced"
},
{
"label": "Responsive proof",
"value": "queued",
"status": "review"
}
],
"statuses": [
"Active",
"Synced",
"Draft"
]
}
},
{
"id": "detail-editor",
"title": "Detail editor",
"viewport": "tablet",
"primitives": [
"button",
"card",
"input",
"textarea",
"select",
"checkbox",
"switch",
"slider",
"dialog",
"sheet"
],
"composition": "A focused editing flow with form fields, validation, confirmation, and a contextual side panel.",
"mustShow": [
"focus ring",
"error or destructive state",
"dialog or sheet treatment",
"written guidance content"
],
"avoid": [
"unstyled browser controls",
"floating cards inside cards",
"missing labels"
],
"scene": {
"eyebrow": "editing flow",
"headline": "Language recipe editor",
"description": "A focused form proving labels, validation, toggles, panel rhythm, and action hierarchy.",
"primaryAction": "Save recipe",
"secondaryAction": "Open sheet",
"fields": [
{
"label": "Component family",
"value": "Narrative cards"
},
{
"label": "State treatment",
"value": "Visible focus + validation"
},
{
"label": "Motion",
"value": "Small lift, no opacity-only fade"
}
],
"statuses": [
"Focus",
"Invalid",
"Confirmed"
]
}
},
{
"id": "data-operations",
"title": "Data operations",
"viewport": "mobile",
"primitives": [
"button",
"tabs",
"badge",
"dropdown-menu",
"table",
"tooltip",
"separator"
],
"composition": "A compact operational view proving row rhythm, stacked actions, menu states, badges, and empty/destructive states.",
"mustShow": [
"responsive reflow",
"dense row styling",
"menu affordance",
"status badge system"
],
"avoid": [
"desktop-only tables",
"text overflow",
"default shadcn spacing without Katagami character"
],
"scene": {
"eyebrow": "operations",
"headline": "Compact review queue",
"description": "A narrow viewport scene with rows, menus, tooltips, badges, and destructive affordances.",
"primaryAction": "Resolve",
"secondaryAction": "Filter",
"rows": [
{
"label": "Button hierarchy",
"value": "approved",
"status": "ok"
},
{
"label": "Table rhythm",
"value": "needs pass",
"status": "watch"
},
{
"label": "Empty state",
"value": "designed",
"status": "done"
}
],
"statuses": [
"Queued",
"Blocked",
"Done"
]
}
}
],
"componentRecipes": [
{
"primitive": "button",
"intent": "Prove action hierarchy, focus, disabled, and destructive states."
},
{
"primitive": "card",
"intent": "Carry the language surface, border, elevation, and density rules."
},
{
"primitive": "input",
"intent": "Show labels, focus rings, validation, and spacing rhythm."
},
{
"primitive": "textarea",
"intent": "Show longer guidance, validation copy, and writing density."
},
{
"primitive": "select",
"intent": "Show filtering, selection contrast, and menu trigger styling."
},
{
"primitive": "dialog",
"intent": "Show centered decision states and overlay treatment."
},
{
"primitive": "sheet",
"intent": "Show contextual side panels and responsive editing."
},
{
"primitive": "tabs",
"intent": "Show navigational structure and active/inactive contrast."
},
{
"primitive": "badge",
"intent": "Show compact status vocabulary and semantic colors."
},
{
"primitive": "separator",
"intent": "Show section rhythm without generic gray dividers."
},
{
"primitive": "checkbox",
"intent": "Show binary selection with visible focus and checked states."
},
{
"primitive": "switch",
"intent": "Show settings toggles and on/off contrast."
},
{
"primitive": "slider",
"intent": "Show numeric adjustment with track/thumb styling."
},
{
"primitive": "tooltip",
"intent": "Show concise explanation styling above compact controls."
},
{
"primitive": "dropdown-menu",
"intent": "Show action menus, destructive items, and grouped choices."
},
{
"primitive": "table",
"intent": "Show dense operational data, separators, row states, and responsive behavior."
}
],
"qualityRules": {
"do": [
"Use archival blue as the only chromatic signal for selection, checksum, focus, and cold memory highlights.",
"Keep thin black crop marks, ruler ticks, panel borders, and timestamp gutters visible on every major surface.",
"Represent damaged data with missing cells, soft drift, occlusion, and low-contrast noise while preserving legible metadata."
],
"dont": [
"Do not use green matrix rain, neon magenta or cyan cyberpunk, skulls, red alert panels, or maximal terminal spam.",
"Do not make generic dashboards with rounded SaaS card grids, KPI tiles, or decorative line charts.",
"Do not hide uncertainty; avoid fake-perfect restoration, glossy hero art, character portraits, or anime fan art."
]
}
}
related