light constant

CursorTheme const light

Light theme cursor configuration.

Uses standard cursor styles suitable for most applications:

  • Selection: grab hand
  • Drag: grabbing hand
  • Node: click pointer
  • Port: precise crosshair

Implementation

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