inactiveColor method

Color inactiveColor()

Returns inactive color for the mode.

Implementation

Color inactiveColor() {
  return palette.brightness() == Brightness.light
      ? palette.iron().withOpacity(0.10)
      : palette.lavender().withOpacity(0.50);
}