shade method

Color shade([
  1. int amount = 10
])

Implementation

Color shade([int amount = 10]) => mix(
      const Color.fromRGBO(0, 0, 0, 1.0),
      amount,
    );