tertiaryFixedDim property

DynamicColor tertiaryFixedDim
final

Implementation

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