๐Ÿ™ Onigiri

The Crunchyroll design system, rendered live from its own tokens and components. It cannot drift from what ships.

Docs draft

Tooltip

When to use it

useNaming an icon-only control or adding a short clarification on hover/focus.
avoidContent the user needs to complete a task. If it matters, it does not hide behind a hover. visible-text visible text.
avoidInteractive content โ€” buttons, links, forms. Tooltips are read-only and dismiss on leave. popover Planned.

Variants

placement ยท top / bottom โ€” Arrow booleans in Figma (Top Arrow / Bottom Arrow); a placement prop in code.

align ยท start / center / end โ€” Where the arrow sits along the edge. The old Alignment axis.

line ยท single / multi-line โ€” Figma-only axis: multi-line caps the box at 240 and wraps. Code wraps automatically at the same cap.

Guidelines

mustReveal on keyboard focus exactly as on hover. โ€” Hover-only tooltips are invisible to keyboard users; the component wires focus-within by default.
must-notNo interactive content inside a tooltip. โ€” It cannot be reached before the tooltip dismisses; that pattern is a popover.
shouldOne short sentence, no heading, no punctuation ceremony. โ€” Past 240px wide and two lines, it is documentation, not a tooltip.

API

PropTypeDescription
contentReactNodeThe helper text.
placementenumWhich side of the trigger the tip renders on.
alignenumAlignment of the tip along the trigger edge.
childrenReactNodeThe trigger; receives aria-describedby.

Design specifications

surfacecolor.bg.inverse
textcolor.text.on-inverse
typographytype.body-sm
radiusradius.md
paddingspace.12 x space.8 โ€” ratified; the old set used 12 on single-line and 8 on multi-line
max-width240px
arrow14 x 7 triangle in the surface color

Accessibility

Tab โ€” Focusing the trigger reveals the tooltip; leaving dismisses it.

Escape โ€” Should dismiss while focused โ€” arrives with the JS layer before stable.

color.text.on-inverse on color.bg.inverse โ€” Contracted at โ‰ฅ 4.5:1 by the build gate.

role=tooltip linked via aria-describedby. The old set was dark-only #414141 on black at 1.5:1 surface separation; the inverse pair fixes both themes.