chore: Improve read marker design

This commit is contained in:
Krille 2024-10-11 13:13:47 +02:00
commit 694bc488fd
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
2 changed files with 19 additions and 12 deletions

View file

@ -14,7 +14,7 @@ extension StringColor on String {
Color get color {
_colorCache[this] ??= {};
return _colorCache[this]![0.35] ??= _getColorLight(0.35);
return _colorCache[this]![0.3] ??= _getColorLight(0.3);
}
Color get darkColor {