kanban
ProgressionTimelineSeries
Kanban board — columns of cards by stage.
Colour coding
Use for status snapshots: what's in each lane (todo/doing/done or similar). Each column is a stage; each card is a work item. By default the board is a calm grid of neutral cards and spends color only on STATUS, so a flagged card is the focal point; opt into keyline (color-code cards by category) or tinted (color-code columns by stage) when color coding earns its keep.
swimlaneworkflowstatusagileownership
When to use
- Status snapshot by stage. When the audience needs to see what is in each lane right now — backlog, in progress, review, done. The board reads as the current state of the work, not its history or schedule.
- Mixed card density is informative. Lanes that bulge or thin out tell the story — a fat 'in progress' column flags a WIP overload; an empty 'review' column flags a handoff stall. The visual imbalance is the signal.
- Cards carry size and status meta. Trailing inline-code badges (
S/M/L/XL) sit in the title row; status pills (at-risk,blocked) push right on the meta row. The card stays scannable while the second channel of information rides along.
When not to use
- Schedule, not status. If the question is when each task ships rather than where it sits today, reach for
gantt(spans) orroadmap(phases). Kanban is a snapshot, not a timeline. - More than five lanes. Past five columns the cards compress and the column headers crowd. Group adjacent stages or split into two boards (e.g. by team) instead.
- Cards without meta. A board of bare titles wastes the layout's affordances. Add at least a size badge and a lane label so the audience can scan workload and ownership at a glance.
Common mistakes
- Naming a column something other than Done/Completed/Shipped/Closed, expecting the finished-work dimming treatment anyway. The dimmed treatment for completed work triggers off the COLUMN TITLE TEXT matching Done/Completed/Shipped/Closed exactly — a column named e.g. 'Finished' or 'Live' won't dim even if it functionally means the same thing.
- Placing the status pill on the card's title line instead of its nested lane-label bullet. Size badges (S/M/L/XL) trail the card TITLE; the status pill trails the nested lane-label bullet one level deeper (
- platform \at-risk\``) — a status pill on the title line instead just becomes an unrecognized trailing code left in the title.
Authoring
<!-- _class: kanban -->
`Eyebrow · context`
## Board status today.
- Backlog
- First card `S`
- team-a
- Second card `M`
- team-b `at-risk`
- In progress
- Third card `M`
- team-a
- Done
- Fourth card `S`
- team-bSlots
| Slot | Selector | Required | Description |
|---|---|---|---|
title | h2 | yes | Slide heading. |
lanes | ul > li | yes | Three levels. Outer li = column header as plain text (e.g. Backlog). Each inner li = a card: title then a trailing inline-code size badge (S/M/L/XL; other codes are left in the title). Each card may carry its own nested bullet = a categorical lane label, optionally with a trailing status pill, e.g. - platform at-risk. A column titled Done / Completed / Shipped / Closed dims its cards. Status vocabulary matches the shared chart set (on-track / done / live / at-risk / warn / blocked / fail / deferred / pilot / decision). |
Anatomy
┌─────────────────────────────────────────┐
│ header │
│ Kanban heading. │
│ │
│ TODO DOING DONE │
│ [card 1] [card 4] [card 7] │
│ [card 2] [card 5] [card 8] │
│ [card 3] [card 6] │
│ │
│ footer 1/19 │
└─────────────────────────────────────────┘Variant decision rule
- default (no modifier) — Color is spent on status — a flagged card's surface and border tint to its status, and the Done column dims — while unflagged cards and other columns stay neutral.
keyline/tintedmove status color OFF the card surface and onto the chip/column instead, keeping cards themselves neutral regardless of status. keyline— Cards should be color-coded by CATEGORY (their nested lane label) via a hairline, not by column.tinted— Each COLUMN/stage itself should carry a colored wash, making the board's stage structure the first thing the eye reads.
Variants
keyline — keyline
Hairlines rule the lanes apart.
<!-- _class: kanban keyline -->
`kanban keyline`
## keyline rules the lanes apart.
- Backlog
- Ruled lanes `S`
- In progress
- Same board `M`
- Done
- New look `L`tinted — tinted
Each lane takes a colored wash.
<!-- _class: kanban tinted -->
`kanban tinted`
## tinted colors each lane's wash.
- Backlog
- Lane wash `S`
- In progress
- Color coded `M`
- Done
- Reads faster `L`Related
- ganttschedule of overlapping tasks across lanes, not current state
- roadmapphased grid of deliverables across workstreams
- checklistsingle list of items with done/in-flight/planned states
- verdict-gridoptions scored against shared criteria, not stage-tracked