mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
formatted all files.
This commit is contained in:
@ -6,15 +6,15 @@ abstract class ColorsManager {
|
||||
static const Color primaryColor = Color(0xFF0030CB); //023DFE
|
||||
static const Color secondaryTextColor = Color(0xFF848484);
|
||||
static Color primaryColorWithOpacity =
|
||||
const Color(0xFF023DFE).withOpacity(0.6);
|
||||
const Color(0xFF023DFE).withValues(alpha: 0.6);
|
||||
static const Color whiteColors = Colors.white;
|
||||
static Color whiteColorsWithOpacity = Colors.white.withOpacity(0.6);
|
||||
static Color whiteColorsWithOpacity = Colors.white.withValues(alpha: 0.6);
|
||||
|
||||
static const Color secondaryColor = Color(0xFF023DFE);
|
||||
static const Color onSecondaryColor = Color(0xFF023DFE);
|
||||
static Color shadowBlackColor = Colors.black.withOpacity(0.2);
|
||||
static Color shadowBlackColor = Colors.black.withValues(alpha: 0.2);
|
||||
|
||||
static Color dialogBlueTitle = const Color(0xFF023DFE).withOpacity(0.6);
|
||||
static Color dialogBlueTitle = const Color(0xFF023DFE).withValues(alpha: 0.6);
|
||||
|
||||
static const Color primaryTextColor = Colors.black;
|
||||
|
||||
@ -83,7 +83,5 @@ abstract class ColorsManager {
|
||||
static const Color maxPurpleDot = Color(0xFF5F00BD);
|
||||
static const Color minBlue = Color(0xFF93AAFD);
|
||||
static const Color minBlueDot = Color(0xFF023DFE);
|
||||
static const Color grey25 = Color(0xFFF9F9F9);
|
||||
|
||||
|
||||
static const Color grey25 = Color(0xFFF9F9F9);
|
||||
}
|
||||
|
Reference in New Issue
Block a user