Added jitterStip to prevent the graphs overlaying each other

This commit is contained in:
2025-07-11 10:34:39 +02:00
parent b3c70f711a
commit 668328300a
2 changed files with 28 additions and 13 deletions

View File

@@ -6,6 +6,13 @@ class CustomTheme {
static Color backgroundColor = const Color(0xFF101010);
static Color backgroundTintColor = CupertinoColors.darkBackgroundGray;
// graph colors
static const Color graphColor1 = Color(0xFFF44336);
static const Color graphColor2 = Color(0xFF2196F3); //FF2196F3
static const Color graphColor3 = Color(0xFFFFA726); //FFFFA726
static const Color graphColor4 = Color(0xFF9C27B0); //9C27B0
static final Color graphColor5 = primaryColor;
static TextStyle modeTitle = TextStyle(
color: primaryColor,
fontSize: 20,