checkmarkColor constant

Map<CWidgetState, Map<CToggleCheckStatus, Color>> const checkmarkColor

Implementation

static const Map<CWidgetState, Map<CToggleCheckStatus, Color>> checkmarkColor = {
  CWidgetState.enabled: {
    CToggleCheckStatus.checked: CColors.green40,
    CToggleCheckStatus.unchecked: CColors.gray60,
  },
  CWidgetState.disabled: {
    CToggleCheckStatus.checked: CColors.gray70,
    CToggleCheckStatus.unchecked: CColors.gray70,
  },
};