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