Made RangeOfAqiChart._lines colors use ColorsManager colors instead of statically defining them in the widget itself using Hex codes.

This commit is contained in:
Faris Armoush
2025-05-27 15:15:29 +03:00
parent 5f3a0c74ac
commit 83363b4c50
2 changed files with 8 additions and 4 deletions

View File

@ -79,4 +79,8 @@ abstract class ColorsManager {
static const Color unhealthyRed = Color(0xFFD40000);
static const Color severePink = Color(0xFFD40094);
static const Color hazardousPurple = Color(0xFFBA01FD);
static const Color maxPurple = Color(0xFF962DFF);
static const Color maxPurpleDot = Color(0xFF5F00BD);
static const Color minBlue = Color(0xFF93AAFD);
static const Color minBlueDot = Color(0xFF023DFE);
}