shadeInactive property

DynamicColor get shadeInactive

Implementation

DynamicColor get shadeInactive => DynamicColor(
  name: "shade_inactive",
  palette: (scheme) => scheme.neutralPalette,
  tone: (_) => 20.0,
  isBackground: true,
  background: (_) => underSurface,
  contrastCurve: (_) => const ContrastCurve(1.0, 1.0, 1.0, 1.0),
  toneDeltaPair: (_) => ToneDeltaPair(
    roleA: shadeInactive,
    roleB: shadeDisabled,
    delta: 15.0,
    polarity: .lighter,
    constraint: .farther,
  ),
);