light constant

AnnotationTheme const light

A predefined light theme for annotations.

This theme is designed for use in light-themed applications with:

  • Cyan selection colors (matching default selection theme)
  • Orange highlight colors for drag-over feedback
  • Subtle semi-transparent backgrounds

Colors:

  • Selection: Cyan (#00BCD4)
  • Highlight: Orange (#FF9800)

Implementation

static const light = AnnotationTheme(
  selectionBorderColor: Color(0xFF00BCD4),
  selectionBackgroundColor: Color(0x1A00BCD4),
  highlightBorderColor: Color(0xFFFF9800),
  highlightBackgroundColor: Color(0x1AFF9800),
  borderWidth: 1.0,
  highlightBorderWidthDelta: 1.0,
  borderRadius: BorderRadius.all(Radius.circular(8.0)),
);