fix icons in card customizer in light theme (#3552)

malik1004x committed Aug 24, 2026 at 22:35 UTC b72c5c32327141807ecfe0c3007678d3cf1bf8e4
1 file changed +8 -2
lib/new-ui/pages/card_customizer.dart
+8 -2
@@ -238,8 +238,14 @@ class _CardCustomizerState extends State<CardCustomizer> {
238 height: 48,
239 decoration: BoxDecoration(
240 borderRadius: BorderRadius.circular(18),
241 - color: Theme.of(context)
242 - .colorScheme
241 + color: Theme.of(context).brightness ==
242 + Brightness.light
243 + ? Theme.of(context)
244 + .colorScheme
245 + .onSurfaceVariant
246 + .withAlpha(64)
247 + : Theme.of(context)
248 + .colorScheme
249 .surfaceContainerHigh,
250 border: Border.all(
251 color: isSelected