diff --git a/src/deck/Annotator.tsx b/src/deck/Annotator.tsx index c37e1e3..2ffe348 100644 --- a/src/deck/Annotator.tsx +++ b/src/deck/Annotator.tsx @@ -55,7 +55,15 @@ const TOOLS: { id: Tool; label: string; path: string }[] = [ }, ]; const COLORS = ['var(--primary)', '#ffffff', '#ef4444', '#f5b73a', '#4aa8ff']; +const COLOR_LABELS: Record = { + 'var(--primary)': 'Accent', + '#ffffff': 'White', + '#ef4444': 'Red', + '#f5b73a': 'Amber', + '#4aa8ff': 'Blue', +}; const SIZES = [3, 6, 11]; +const SIZE_LABELS = ['Small stroke', 'Medium stroke', 'Large stroke']; const IconUndo = () => ( setTool(t.id)} > setColor(c)} style={{ background: c }} /> ))} - {SIZES.map((s) => ( + {SIZES.map((s, i) => (