monthLabelTextStyle static method
Implementation
static TextStyle monthLabelTextStyle({required bool expanded}) {
return TextStyle(
color: expanded ? accentColor : labelColor,
fontWeight: expanded ? FontWeight.w700 : FontWeight.w400,
);
}