tertiaryFixed property

DynamicColor tertiaryFixed
getter/setter pair

Implementation

static DynamicColor tertiaryFixed = DynamicColor.fromPalette(
  name: 'tertiary_fixed',
  palette: (s) => s.tertiaryPalette,
  tone: (s) => _isMonochrome(s) ? 40.0 : 90.0,
  isBackground: true,
  background: (s) => MaterialDynamicColors.highestSurface(s),
  contrastCurve: ContrastCurve(1, 1, 3, 4.5),
  toneDeltaPair: (s) => ToneDeltaPair(MaterialDynamicColors.tertiaryFixed,
      MaterialDynamicColors.tertiaryFixedDim, 10, TonePolarity.lighter, true),
);