Update MIH Red to deeper red

This commit is contained in:
2026-04-16 13:43:00 +02:00
parent 7482646977
commit 034ca60cad
5 changed files with 19 additions and 13 deletions

View File

@@ -80,7 +80,7 @@ class MihColors {
/// Semantic red color typically used for error states, warnings, or deletions.
static Color red({bool? darkMode}) {
if (darkMode == true || darkMode == null) {
return const Color(0xffD87E8B);
return const Color(0xffdb5368);
} else {
return const Color(0xffbb3d4f);
}