light constant

CursorTheme const light

Light theme cursor configuration.

Uses standard cursor styles suitable for most applications:

  • Canvas: grab hand (indicates pannable)
  • Selection: precise crosshair (for accurate selection)
  • Drag: grabbing hand (active movement)
  • Node/Connection: click pointer (interactive element)
  • Port: precise crosshair (connection targeting)

Implementation

static const light = CursorTheme(
  canvasCursor: SystemMouseCursors.grab,
  selectionCursor: SystemMouseCursors.precise,
  dragCursor: SystemMouseCursors.grabbing,
  nodeCursor: SystemMouseCursors.click,
  portCursor: SystemMouseCursors.precise,
);