static Color blendColor(Color a, Color b, double bish) {
  ret blendColors(a, b, bish);
}

static Color blendColor(double bish, Color a, Color b) {
  ret blendColors(a, b, bish);
}