This is the UI/visual design doc for Orca — color tokens, typography, component selection, and UX rules. It is not an architecture doc; for system-level design see code and inline comments. Token values live in src/renderer/src/assets/main.css (canonical); this file documents the roles and rules for using them.
Orca is an Electron desktop app for orchestrating coding agents across git worktrees. The visual identity is monochrome and quiet — neutral grays carry the chrome, color is reserved for state (selection ring, destructive, git decorations). The product spends most of its time hosting other people's tools (Monaco, xterm, Markdown previews), so Orca's own UI should recede and frame.
When in doubt:
- Reach for muted/accent/border before reaching for color.
- Reach for CSS variables before hardcoding hex.
- Match the nearest shadcn primitive before writing custom CSS.
| Concern | Canonical location |
|---|---|
| Color tokens | src/renderer/src/assets/main.css (:root, .dark) |
| Tailwind theme bindings | Same file, @theme inline { … } block |
| Component primitives | src/renderer/src/components/ui/ (shadcn-style) |
| App typography / scrollbars / titlebar chrome | Same main.css |
Never hardcode a hex value in component code if a variable already covers it. If a new token is needed, add it to main.css (both :root and .dark), expose it in the @theme inline block, then use it.
Tokens come in pairs: a surface and a foreground that meets contrast on it. Always use them together.
| Role | Use it for | Don't use it for |
|---|---|---|
background / foreground |
App canvas, default text | Cards, popovers, sidebar (have their own) |
card / card-foreground |
Panels lifted off the canvas | The canvas itself |
popover / popover-foreground |
Floating menus, dropdowns, hovercards | Inline UI |
primary / primary-foreground |
The single affirmative action in a flow (Save, Confirm) | Decorative accents; hover states; secondary actions |
secondary / secondary-foreground |
Lower-emphasis actions next to a primary | The affirmative action |
muted / muted-foreground |
De-emphasized text, captions, placeholders, disabled chrome | Body copy; primary actions |
accent / accent-foreground |
Hover/active backgrounds for ghost buttons and list rows | Solid filled buttons (use secondary instead) |
destructive / destructive-foreground |
Delete, discard, irreversible-action buttons; error states | Cancel buttons (Cancel is not destructive) |
border |
All hairlines: dividers, input outlines, card edges | Heavy emphasis; that's ring |
input |
Form field background only | Anywhere outside form fields |
ring |
Focus-visible outlines, active selection halos | Persistent decoration |
sidebar (+ variants) |
The worktree sidebar and its children | Other panels |
editor-surface |
Background of Monaco / markdown editor panes | App chrome |
The sidebar family expands into --sidebar, --sidebar-foreground, --sidebar-primary, --sidebar-primary-foreground, --sidebar-accent, --sidebar-accent-foreground, --sidebar-border, and --sidebar-ring — use them inside the worktree sidebar so its hover/selected/focus states stay consistent and don't bleed into other panels. editor-surface is its own token (not just background) because Monaco and the markdown editor have a slightly darker surface in dark mode to match VS Code conventions; reach for it whenever you're rendering an editor pane.
For diff status, file-tree decorations, and the changes view, use the git decoration tokens (mirroring VS Code's palette so users transferring from VS Code aren't surprised):
| Token | State |
|---|---|
--git-decoration-added |
Added / new |
--git-decoration-modified |
Modified |
--git-decoration-deleted |
Deleted |
--git-decoration-renamed |
Renamed |
--git-decoration-untracked |
Untracked |
--git-decoration-copied |
Copied |
--git-decoration-ignored |
Ignored by git |
Use these only for git status. Don't reuse them for unrelated state colors — that breaks the convention.
A common point of drift. Use these conventions for any list-style row (worktrees, command palette items, settings nav):
- Idle: transparent background.
- Hover:
bg-accent(in the worktree sidebar,bg-sidebar-accent). - Keyboard-selected (cmdk highlight):
data-[selected=true]:bg-accentplus aborder-borderoutline so the active row stays visible while the user types. Thedata-selectedattribute is set bycmdkautomatically. - Persistent "current" / "active" row (e.g. the worktree the user is viewing): also
bg-accent, plus adata-current="true"attribute so CSS or future styling can distinguish it from the cmdk highlight. - Don't: hardcode
bg-[#ededed]/bg-[#333333]or invent a "selected" color. The accent token already adapts to light/dark and matches the rest of the app.
When you need a tint (e.g. a 12% primary wash on hover), use color-mix against the existing token, not a new hex:
background: color-mix(in srgb, var(--primary) 12%, var(--background));This keeps light/dark parity automatic.
- Family:
Geistis loaded as a single variable woff2 (weight range 100–900). Always reach forGeistfor sans, neverInteror system sans. - Mono:
var(--font-mono)— used for paths, terminal-adjacent UI, code, and anywhere monospace conveys "this is literal." - Body letter-spacing:
0.01em(set globally onbody). Don't override per component. - Sizes: Tailwind's default scale. Common sizes in this repo:
- 11px (uppercase meta, sidebar headers, captions) — pair with
font-weight: 600andtext-transform: uppercaseandletter-spacing: 0.05emfor category labels. - 12px (sub-text, paths, secondary content)
- 13px (sidebar items, dense list rows)
- 14px (default body, button text in
defaultsize)
- 11px (uppercase meta, sidebar headers, captions) — pair with
--radius: 0.625rem (10px) is the base; the rest are computed (--radius-sm = 0.6×, --radius-md = 0.8×, --radius-lg = 1×, --radius-xl = 1.4×, etc.). Buttons and inputs use rounded-md; the Card primitive uses rounded-xl; badges use rounded-full. Match the existing primitive's radius rather than introducing a new one.
Orca uses shadows sparingly. Three levels in practice:
- Inset hairline —
border+bordertoken. The default. Almost everything sits at this level. - Subtle lift —
shadow-xs+ a single-token border. Outline buttons, embedded cards. - Floating —
0 10px 24px rgba(0, 0, 0, 0.18). Popovers, popups that escape the editor surface. Reserved.
Don't add a fourth level. If something needs more emphasis than "floating," you're probably reaching for the focus ring instead.
Use the shadcn primitives in src/renderer/src/components/ui/ before writing anything custom. The shadcn-style wrappers in this folder follow a consistent pattern:
- Most carry a
data-slot="<name>"attribute on their root for CSS targeting — do not strip it. (The non-shadcn helpers in this folder —sonner,repo-multi-combobox,team-multi-combobox— don't follow this pattern and shouldn't be modeled when adding new primitives that should.) - Use
cn()for class merging. Pass userclassNamelast so callers can override. - Use
class-variance-authority(CVA) for variants when there are multiple.
Variants in priority order:
| Variant | Use case |
|---|---|
default |
The single affirmative action in a flow. |
secondary |
Lower-emphasis sibling next to a default. |
outline |
Toolbar / standalone actions where a filled button feels heavy. |
ghost |
Icon buttons, list-row triggers, anywhere chrome should disappear. |
link |
Inline text actions inside paragraphs. |
destructive |
Delete, discard, irreversible. Never for Cancel. |
Sizes: default (36px), sm (32px), xs (24px), lg (40px), plus icon, icon-xs, icon-sm, icon-lg. Match the size to the surrounding row height — don't drop a default button into a 28px toolbar.
Browse src/renderer/src/components/ui/ for the full list. Most wrap a Radix UI primitive — exceptions are command (wraps cmdk), sonner (wraps sonner), and the visual-only wrappers (badge, button-group, card, input) which apply tokens and Tailwind utilities directly. Never reimplement headless behavior; extend the existing wrapper.
When a control has multiple plausible primitives, use this fork:
| You want… | Reach for | Don't use |
|---|---|---|
| Hover-only label on an icon-only button | Tooltip |
HoverCard (too heavy), title attr |
| Hover preview of richer content (avatar + summary) | HoverCard |
Tooltip (no rich content) |
| Click-revealed menu with actions | DropdownMenu |
Popover with hand-rolled list |
| Right-click contextual actions | ContextMenu |
DropdownMenu (different invocation) |
| Click-revealed surface with arbitrary content (form, picker) | Popover |
Dialog (it traps focus and dims) |
| Modal that demands a decision before you continue | Dialog |
Popover, inline overlay |
| Drawer / panel sliding in from an edge | Sheet |
Dialog centered |
| Single choice from a known list | Select |
Custom listbox |
| Single choice with search / fuzzy filtering | Command inside Popover |
Select (no search) |
| Multi-select with search | repo-multi-combobox / team-multi-combobox (mirror their pattern) |
Roll a new one |
| Transient confirmation ("Saved", "Copied") | sonner toast |
Dialog, inline banner |
| Persistent inline status ("3 errors") | inline text + Badge |
toast (toasts disappear) |
If you find yourself styling around a primitive (<Popover> to act like a <Dialog>, or vice versa), stop and reconsider — the focus-management semantics differ and a future contributor will be misled by the mismatch.
Tooltips exist to name a control whose meaning isn't obvious from its appearance. They are not the place to teach, persuade, or warn — anything users need to read while acting belongs in the visible UI.
- Use a tooltip when: an icon-only button or compact chip needs a label. Toolbar icons, badges with abbreviations, truncated paths.
- Don't use a tooltip when: the control already has a visible label, the content is interactive (links, buttons), or the message is critical (errors, blocking warnings — those go inline).
- Mounting: the global
<TooltipProvider delayDuration={400}>lives at the App root. Don't nest a secondTooltipProviderunless you need a different delay for a tightly-scoped surface. - Trigger pattern: wrap the trigger element with
<TooltipTrigger asChild>so the tooltip's accessibility props attach to the button (not a wrapper span). This is required for keyboard focus to surface the tooltip. - Placement: default
side="top" sideOffset={4}— match the toolbar pattern insidebar/SidebarToolbar.tsx. Pick a different side only when the default would clip against the viewport. - Shortcut chips inside tooltips: if the action has a keyboard shortcut, append
<ShortcutKeyCombo />rather than baking the keys into the label string. The chips render correctly per platform; baked-in strings drift.
<Tooltip>
<TooltipTrigger asChild>
<Button variant="ghost" size="icon-sm" onClick={openSettings}>
<Settings />
</Button>
</TooltipTrigger>
<TooltipContent side="top" sideOffset={4}>
Settings
</TooltipContent>
</Tooltip>Icons come from lucide-react. Don't import a second icon library.
- Default size:
size-4(16px).Buttonauto-applies this to any<svg>it contains via[&_svg:not([class*='size-'])]:size-4, so most call sites don't need to set a size on the icon. size-3/size-3.5: for metadata, captions, and dense list rows where 16px is too loud.size-7+: for featured/empty-state hero icons only.- Stroke width: lucide's default 2px. Don't override per-icon.
- Color: inherit from surrounding text —
text-muted-foregroundfor secondary,text-destructivefor destructive, etc. Don't apply a token to the SVG directly when the parent already carries the right color. - Spinner: the canonical loading icon is
<Loader2 className="size-4 animate-spin" />. For 3s+ multi-step work, prefer a label that names the stage ("Cloning…" → "Installing…") over an unlabeled spinner. See UX rule 1.
Use <ShortcutKeyCombo /> from src/renderer/src/components/ShortcutKeyCombo.tsx. It renders a consistent key-cap style and inserts a + separator on Windows/Linux (Mac shows adjacent glyphs, no separator). It does not transform key strings — the caller picks the platform-appropriate labels and passes them in:
const isMac = navigator.userAgent.includes('Mac')
const mod = isMac ? '⌘' : 'Ctrl'
const shift = isMac ? '⇧' : 'Shift'
<ShortcutKeyCombo keys={[mod, shift, 'N']} />See Landing.tsx for the canonical pattern. Don't roll a one-off <kbd> — kbd chips drift in shape and color across the app fast if everyone styles their own.
Where shortcuts surface in the UI:
- Tooltips on icon buttons — append the chip after the label, trailing.
- Dropdown / context-menu items — use
<DropdownMenuShortcut>(or its context-menu equivalent) for the right-aligned chip; don't position one yourself. - Never on Cancel, Dismiss, or
link-variant inline actions — see UX rule 3.
The label MUST match the actual binding for the platform. If the keyboard handler reads metaKey on Mac and ctrlKey elsewhere, the chip must show ⌘ on Mac and Ctrl elsewhere. Mismatched chips are worse than no chip.
The pattern in src/renderer/src/components/settings/SettingsFormControls.tsx is the house style for any label + control + helper text. Match it for new forms:
- Outer stack:
space-y-3for full-section forms (ThemePicker);space-y-2for compact single-control fields (ColorField,NumberField). Pick by density, not preference. - Label group:
space-y-1containing<Label>and a description intext-xs text-muted-foreground. - Control: the shadcn primitive (
<Input>,<Select>, etc.). Errors surface viaaria-invalid; the input primitive already maps that to a destructive ring — don't paint your own. - Trailing metadata:
text-[11px] text-muted-foregroundbelow the control (e.g., "Current: 14px · Default: 13px"), not next to the label.
Three scrollbar classes are defined globally in main.css:
.scrollbar-sleek— the default thin, neutral scrollbar for sidebars, lists, popovers. Pair with.scrollbar-sleek-parenton a hover-target ancestor if you want the thumb to fade in only on parent hover..scrollbar-editor— slightly heavier, used inside Monaco-adjacent surfaces..worktree-sidebar-scrollbar— no reserved gutter: paired withoverflow-y-auto, the scrollbar (and its width) exists only while content actually overflows, so a short list stays flush with the fixed header controls and classic-scrollbar Windows shows no arrow buttons on empty lists. The thumb stays invisible until the parent (.scrollbar-sleek-parent) is hovered. Used only in the worktree sidebar.
Apply one of these to overflow containers; don't write a fourth style.
These are the rules a contributor will most often get wrong if they're working in isolation. They apply to every UI change.
UI copy must not overclaim. Never imply the app has taken an action, made a decision, or observed a fact unless the code has real state or result data to support it. Use neutral process language while work is pending, and reserve result verbs like "skipped", "protected", "found", "verified", or "deleted" for actual results.
Use this rubric when reviewing any Orca IDE screen, screenshot, or prototype. A good review should name the highest-impact friction first, then give concrete changes the implementer can make.
- Top fixes: the 3 changes that would most improve the screen.
- Friction notes: specific clutter, alignment, copy, focus, or flow issues, with the affected UI element named.
- Suggested changes: exact changes to layout, hierarchy, controls, copy, empty/error states, and disclosure.
- Keyboard and speed check: whether the primary workflow can be completed in 1-2 actions where appropriate, with good default focus and Enter/Esc behavior.
- Follow-up links or states: missing external links, acquisition actions, or persistent errors the user needs to recover.
- Progressive disclosure: keep high-frequency actions visible and prominent. Move low-frequency actions out of the common pointer path into menus, overflow controls, detail drawers, or advanced sections. Do not make menus so long that the user has to scan unrelated actions; group or split them when they grow.
- Action hierarchy: the primary action must be obvious through placement, size, and
defaultbutton styling. Put high-frequency actions at the top of menus and in the most reachable toolbar positions. Secondary and rare actions should not compete with the primary action. - Click count: remove unnecessary intermediate steps. Common workflows should complete in 1-2 actions when the app already has enough information to proceed.
- Default focus: dialogs, popovers, and command surfaces should focus the field or primary action the user is most likely to use. If Enter submits, focus must land where Enter triggers the intended primary action. Esc should back out without adding visual noise to Cancel/Dismiss.
- Keyboard navigation: prefer searchable command surfaces for long option lists. Add search fields when users need to find repositories, branches, worktrees, agents, commands, settings, files, or providers from a list.
- Shortcut labels: show shortcut chips only for shortcuts that are actually implemented and useful at that location. Labels must match the platform binding. If a shortcut strategy is undecided, do not expose a placeholder label in product UI.
- Alignment: rows and columns must line up to a visible grid. Left-align text and labels for scanability; right-align numbers, counts, shortcuts, and trailing metadata when comparison matters; center-align only compact icon controls, empty states, and table cells where symmetry is the clearest read.
- Copy quality: displayed text must be typo-free, concise, and specific. Prefer direct verbs and concrete nouns. Remove filler like "please", "simply", "just", "you can", and generic success language that is not backed by state.
- Dialogs and overlays: choose a dialog size that matches the amount of input. Short confirmations stay compact; forms with multi-line text, path pickers, provider setup, or review content need a larger dialog or sheet. Floating surfaces must use the documented shadow/elevation and background treatment so they read as above the page.
- Empty and error states: when data is missing, show a direct action to acquire or configure that data. Use toasts for transient failures or confirmations; persist errors inline when the user needs to read, retry, copy, or act on the message.
- External links: add direct links when the user may need provider docs, token settings, billing/setup pages, Git provider resources, or troubleshooting context. Put links near the relevant empty state, error, helper text, or setup step instead of burying them in a generic menu.
- Affordance: users should be able to discover available features without intrusive education. Use familiar icons, visible hover/focus states, clear labels where needed, and tooltips for icon-only controls. Prefer simple lucide icons already used nearby over obscure alternatives.
- Layout density: avoid jamming controls together. Preserve breathing room around the primary workflow, reduce competing buttons, and keep toolbar groups visually distinct. Dense screens are acceptable only when grouping, alignment, and hierarchy make scanning faster.
- Cards and containers: cards must be visually distinct from their parent surface through the existing
card/bordertreatment. Avoid nesting cards inside cards. If a section is not a repeated item, modal, or framed tool, consider an unframed layout or full-width band instead. - Side-by-side layouts: default to row-by-row layouts for complex workflows because they are easier to align and scan. Use side-by-side layouts only when space is constrained or comparison is the point, then polish column widths, baselines, and wrapping states carefully.
- Animation: use subtle animation to soften expanding/collapsing content and prevent jumpy layout changes. Animation should clarify continuity, not decorate. Respect reduced-motion settings.
- SSH and latency: assume actions may run remotely. Disable submit controls immediately, delay visible loading feedback when appropriate, and keep focus stable while remote data arrives.
The right question isn't "should this control change while it's working?" — it's "how long does the action take, and what does the user need to know during that time?"
| Duration | Feedback |
|---|---|
| 0–100 ms | None. Anything visible reads as a glitch. |
| 100 ms–1 s | Disabled state only. |
| 1 s–3 s | Disabled + spinner or label swap. |
| 3 s+ or multi-step | Stage labels, progress, optional reassurance. |
Two corollaries:
- Pre-reserve any space you'll later occupy. If a control may swap to a longer label or grow an icon, fix its footprint up front (use
width, notmin-width). A control that resizes mid-action looks broken even when the action succeeded. - Don't pick worst-case feedback for everyone. If the action is fast locally and slow remotely (SSH), defer the visible loading state by ~200ms. Local users see nothing; remote users get appropriate feedback. Bind the disabled state immediately (so double-clicks don't double-submit) and the visible state on a timer.
If your component has a sibling — same domain, overlapping behavior, often visible at adjacent moments in the same flow — the two should read as one design. Same icons, same shortcut conventions, same submit semantics. A user moving between them shouldn't perceive a seam.
This is not "match every existing pattern." Some repo patterns are debt and copying them spreads the debt. The narrower claim is about adjacent components. Diverging from a sibling needs a reason: either the sibling is wrong (fix both) or the new component has a real difference in role (commit to it).
When there's no sibling, match the surrounding chrome — button sizes, icon weights, copy tone — and don't manufacture a sibling from a screen the user will never correlate with this one.
destructive is for actions that lose data or can't be undone. Cancel, Dismiss, Close, and Discard are not destructive — they back the user out of an in-progress action and should stay quiet (default ghost button, no color, no keyboard chip, no animated affordance). Save the visual weight for the affirmative action so the two don't compete. Keyboard handlers can still honor Esc; the visible decoration is what stays minimal.
Orca runs on macOS, Linux, and Windows. Every UI change must hold up on all three, in both light and dark mode.
- Modifier keys: Never hardcode
e.metaKey. Usenavigator.userAgent.includes('Mac')to choosemetaKeyon Mac andctrlKeyon Linux/Windows. Electron menu accelerators should useCmdOrCtrl. - Shortcut labels: Display
⌘/⇧on Mac; displayCtrl+/Shift+on other platforms. The label must reflect the actual binding for that platform. - Window chrome: macOS shows traffic lights; the titlebar reserves an 80px gutter (
titlebar-traffic-light-pad) so they don't overlap content. Don't put hit targets in that band on Mac. - SSH: Many users run Orca on a remote machine. Loading states, focus management, and animations must hold up under 50–200 ms of extra latency. Test under simulated latency (or actual SSH) — local-only verification isn't enough. See UX rules → 1.
If you have a UI question this doc doesn't answer:
- Look at adjacent code in
src/renderer/src/components/for the closest sibling, and follow its lead. - Check
src/renderer/src/components/ui/for a primitive that already encodes the pattern. - If it's a token question,
main.cssis canonical — use what's there, or add a new one in both light and dark. - If none of those resolve it, ask the user before inventing.