CarpenterColorScaleConfig constructor

const CarpenterColorScaleConfig({
  1. Color? seed,
  2. Iterable<String> steps = carpenterDefaultColorSteps,
  3. Map<String, Color> colors = const {},
  4. bool neutral = false,
  5. double? chroma,
})

Создает настройку шкалы.

Implementation

const CarpenterColorScaleConfig({
  this.seed,
  this.steps = carpenterDefaultColorSteps,
  this.colors = const {},
  this.neutral = false,
  this.chroma,
});