getMAColor method

Color getMAColor(
  1. int index
)

Implementation

Color getMAColor(int index) {
  switch (index % 3) {
    case 1:
      return colors.ma10;
    case 2:
      return colors.ma30;
    default:
      return colors.ma5;
  }
}