chore: Minor design adjustment

This commit is contained in:
Christian Pauly 2022-08-05 16:12:00 +02:00
commit 1c7424bd18
2 changed files with 24 additions and 13 deletions

View file

@ -25,6 +25,6 @@ extension StringColor on String {
number += codeUnitAt(i);
}
number = (number % 12) * 25.5;
return HSLColor.fromAHSL(1, number, 1, 0.7).toColor();
return HSLColor.fromAHSL(1, number, 1, 0.40).toColor();
}
}