DeepOrangeAccents constructor

const DeepOrangeAccents()

Four shades of deep orange accent; the higher the index, the darker the color.

There are 4 valid indexes

  • 0, light ≡ 100
  • 1, primary ≡ 200
  • 2, darker ≡ 400
  • 3, dark ≡ 700

Implementation

const DeepOrangeAccents()
    // coverage:ignore-start
    : super(
        const [
          DeepOrangeAccent.light(),
          DeepOrangeAccent(),
          DeepOrangeAccent.darker(),
          DeepOrangeAccent.dark(),
        ],
      );