themeColor function

Color themeColor(
  1. CQTSThemeBGType? type
)

Implementation

Color themeColor(CQTSThemeBGType? type) {
  type = type ?? CQTSThemeBGType.pink;
  return theme[type.toString().split('.').last]['themeColor'];
}