refactor: Update color handling to use ARGB format and improve theme consistency

This commit is contained in:
2026-07-01 10:41:59 +02:00
parent 82515960f6
commit 972006c29f
5 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -61,10 +61,10 @@ class MenuDrawer extends StatelessWidget {
? null
: () => onEditCategory?.call(category),
iconColor: Color(
category.colorValue ?? palette.accent.value,
category.colorValue ?? palette.accent.toARGB32(),
),
textColor: Color(
category.colorValue ?? palette.accent.value,
category.colorValue ?? palette.accent.toARGB32(),
),
trailing: IconButton(
padding: const EdgeInsets.all(8),