darken method

Color darken([
  1. double amount = 0.06
])

Darken the color by removing the given amount to lightness.

Implementation

Color darken([double amount = 0.06]) => lighten(-amount);