secondaryFixed property

DynamicColor secondaryFixed
final

Get DynamicColor for secondaryFixed.

Implementation

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