highContrast constant
Opaque black-on-white treatment with a heavy crisp outline and no soft shadow, sized up for legibility under text scaling.
Implementation
static const highContrast = CartesianValueSummaryTheme(
background: Color(0xFF000000),
backgroundOpacity: 1.0,
border: Color(0xFFFFFFFF),
borderWidth: 2.0,
borderRadius: BorderRadius.zero,
padding: EdgeInsets.all(10),
titleStyle: TextStyle(
color: Color(0xFFFFFFFF),
fontSize: 14.0,
fontWeight: FontWeight.bold,
),
labelStyle: TextStyle(
color: Color(0xFFFFFFFF),
fontSize: 12.0,
fontWeight: FontWeight.bold,
),
valueStyle: TextStyle(
color: Color(0xFFFFFFFF),
fontSize: 12.0,
fontWeight: FontWeight.bold,
),
accentSize: 10.0,
minWidth: 168.0,
maxWidth: 280.0,
rowGap: 6.0,
);