defaultTheme constant
DataExplorerTheme
const defaultTheme
Default theme used if no theme is set.
Implementation
static const defaultTheme = DataExplorerTheme._(
rootKeyTextStyle: TextStyle(
fontSize: 14,
color: Colors.black,
fontWeight: FontWeight.bold,
),
propertyKeyTextStyle: TextStyle(
fontSize: 14,
color: Colors.black54,
fontWeight: FontWeight.bold,
),
valueTextStyle: TextStyle(
fontSize: 14,
color: Colors.redAccent,
),
keySearchHighlightTextStyle: TextStyle(
fontSize: 14,
color: Colors.black,
fontWeight: FontWeight.bold,
backgroundColor: Colors.amberAccent,
),
valueSearchHighlightTextStyle: TextStyle(
fontSize: 14,
color: Colors.redAccent,
fontWeight: FontWeight.bold,
backgroundColor: Colors.amberAccent,
),
focusedKeySearchNodeHighlightTextStyle: TextStyle(
fontSize: 14,
color: Colors.black,
fontWeight: FontWeight.bold,
backgroundColor: Colors.lightGreen,
),
focusedValueSearchHighlightTextStyle: TextStyle(
fontSize: 14,
color: Colors.redAccent,
fontWeight: FontWeight.bold,
backgroundColor: Colors.lightGreen,
),
indentationLineColor: Colors.grey,
highlightColor: Colors.black12,
indentationPadding: 8.0,
propertyIndentationPaddingFactor: 4,
);