You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			1002 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			1002 B
		
	
	
	
		
			Dart
		
	
| import 'package:flutter/cupertino.dart';
 | |
| 
 | |
| class MyColors {
 | |
|   static const Color darkIconColor = Color(0xff28323A);
 | |
|   static const Color darkTextColor = Color(0xff2B353E);
 | |
|   static const Color lightTextColor = Color(0xffBFBFBF);
 | |
|   static const Color gradiantStartColor = Color(0xff33c0a5);
 | |
|   static const Color gradiantEndColor = Color(0xff259db7 );
 | |
|   static const Color textMixColor = Color(0xff2BB8A6);
 | |
|   static const Color backgroundColor = Color(0xffF8F8F8);
 | |
|   static const Color grey57Color = Color(0xff575757);
 | |
|   static const Color grey77Color = Color(0xff777777);
 | |
|   static const Color grey98Color = Color(0xff989898);
 | |
|   static const Color lightGreyEFColor = Color(0xffEFEFEF);
 | |
|   static const Color lightGreyEDColor = Color(0xffEDEDED);
 | |
|   static const Color darkWhiteColor = Color(0xffE0E0E0);
 | |
|   static const Color redColor = Color(0xffD02127);
 | |
|   static const Color yellowColor = Color(0xffF4E31C);
 | |
|   static const Color black = Color(0xff000000);
 | |
|   static const Color white = Color(0xffffffff);
 | |
| }
 |