summaryrefslogtreecommitdiffstats
path: root/lib/screen/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'lib/screen/widgets')
-rw-r--r--lib/screen/widgets/signals.dart2
-rw-r--r--lib/screen/widgets/turn_signal.dart4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/screen/widgets/signals.dart b/lib/screen/widgets/signals.dart
index 788d379..dbdffb5 100644
--- a/lib/screen/widgets/signals.dart
+++ b/lib/screen/widgets/signals.dart
@@ -6,7 +6,7 @@ import 'package:flutter_cluster_dashboard/vehicle_signal/vehicle_signal_model.da
class Signals extends StatelessWidget {
final VehicleSignal vehicle;
final double screenHeight;
- static Color idleColor = const Color.fromARGB(194, 55, 53, 53);
+ static Color idleColor = Colors.grey.shade600;
const Signals({
Key? key,
required this.screenHeight,
diff --git a/lib/screen/widgets/turn_signal.dart b/lib/screen/widgets/turn_signal.dart
index a447cbe..446fbb8 100644
--- a/lib/screen/widgets/turn_signal.dart
+++ b/lib/screen/widgets/turn_signal.dart
@@ -43,7 +43,7 @@ class TurnSignal extends HookConsumerWidget {
Colors.black,
const Color.fromARGB(255, 99, 251, 104),
animationController.value.floorToDouble())
- : const Color.fromARGB(255, 49, 48, 48),
+ : Colors.grey.shade600,
width: 0.125 * screenHeight,
),
Image.asset(
@@ -53,7 +53,7 @@ class TurnSignal extends HookConsumerWidget {
Colors.black,
const Color.fromARGB(255, 99, 251, 104),
animationController.value.floorToDouble())
- : const Color.fromARGB(255, 49, 48, 48),
+ : Colors.grey.shade600,
width: 0.125 * screenHeight,
),
],