disable method
Returns a disabled color for the foreground on the background.
WaveColorScheme.background is used if background is not given.
Implementation
Color disable(Color foreground, [Color? background]) => Color.alphaBlend(
foreground.withValues(alpha: disabledOpacity),
background ?? this.background,
);