secondaryFixed property

DynamicColor secondaryFixed
getter/setter pair

Implementation

static DynamicColor secondaryFixed = DynamicColor.fromPalette(
  name: 'secondary_fixed',
  palette: (s) => s.secondaryPalette,
  tone: (s) => _isMonochrome(s) ? 80.0 : 90.0,
  isBackground: true,
  background: (s) => MaterialDynamicColors.highestSurface(s),
  contrastCurve: ContrastCurve(1, 1, 3, 4.5),
  toneDeltaPair: (s) => ToneDeltaPair(
      MaterialDynamicColors.secondaryFixed,
      MaterialDynamicColors.secondaryFixedDim,
      10,
      TonePolarity.lighter,
      true),
);