getCodeBackgroundColor static method
Color
getCodeBackgroundColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getCodeBackgroundColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.codeBackgroundColor ??
style?.codeBackgroundColor ??
getStyleByType(UpConfig.of(context).theme, colorType)
.codeBackgroundColor ??
Colors.grey;
}