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.
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
|
|
|
|
|
class MyColors {
|
|
|
|
|
static const Color darkIconColor = Color(0xff28323A);
|
|
|
|
|
static const Color darkTextColor = Color(0xff2B353E);
|
|
|
|
|
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 lightGreyColor = Color(0xffEFEFEF);
|
|
|
|
|
static const Color darkWhiteColor = Color(0xffE0E0E0);
|
|
|
|
|
static const Color redColor = Color(0xffD02127);
|
|
|
|
|
}
|