Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sachaarbonel/55496f06c81f619fad12e5d5604a5a11 to your computer and use it in GitHub Desktop.
Save sachaarbonel/55496f06c81f619fad12e5d5604a5a11 to your computer and use it in GitHub Desktop.
Random pastel color in Dart
Color randomPastelColor(){
final saturation = 0.4
final lightness = 0.9
final alpha = 1.0
final hue = Random().nextDouble();
final hsl = HSLColor(alpha, hue, saturation, lightness);
return hsl.toColor();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment