dark constant
AnnotationTheme
const dark
A predefined dark theme for annotations.
This theme is designed for use in dark-themed applications with:
- Light blue selection colors
- Amber highlight colors for drag-over feedback
- Subtle semi-transparent backgrounds
Colors:
- Selection: Light Blue (#64B5F6)
- Highlight: Amber (#FFB74D)
Implementation
static const dark = AnnotationTheme(
selectionBorderColor: Color(0xFF64B5F6),
selectionBackgroundColor: Color(0x1A64B5F6),
highlightBorderColor: Color(0xFFFFB74D),
highlightBackgroundColor: Color(0x1AFFB74D),
borderWidth: 1.0,
highlightBorderWidthDelta: 1.0,
borderRadius: BorderRadius.all(Radius.circular(8.0)),
);