You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.3 KiB
93 lines
2.3 KiB
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:project_telephony/utils/headers.dart';
|
|
|
|
const ktextPrimary = Color(0xff333333);
|
|
const ktextSubColor = Color(0xff666666);
|
|
const ktextThirdColor = Color(0xff999999);
|
|
const kForeGroundColor = Color(0xFFFFFFFF);
|
|
const kPrimaryColor = Color(0xFF027AFF);
|
|
const kDarkPrimaryColor = Color(0xFFFF8200);
|
|
const kDangerColor = Color(0xFFFF3B30);
|
|
const kDarkSubColor = Color(0xFF979797);
|
|
const kBalckSubColor = Color(0xFF000000);
|
|
const bgColor = Color(0xFFF8F9FB);
|
|
|
|
class BaseStyle {
|
|
///字体类
|
|
static final double fontSize14 = 14.sp;
|
|
|
|
static final double fontSize16 = 16.sp;
|
|
|
|
static final double fontSize18 = 18.sp;
|
|
|
|
static final double fontSize20 = 20.sp;
|
|
|
|
static final double fontSize22 = 22.sp;
|
|
|
|
static final double fontSize24 = 24.sp;
|
|
|
|
static final double fontSize26 = 26.sp;
|
|
|
|
static final double fontSize28 = 28.sp;
|
|
|
|
static final double fontSize30 = 30.sp;
|
|
|
|
static final double fontSize32 = 32.sp;
|
|
|
|
static final double fontSize34 = 34.sp;
|
|
|
|
static final double fontSize36 = 36.sp;
|
|
|
|
static final double fontSize38 = 38.sp;
|
|
|
|
static final double fontSize40 = 40.sp;
|
|
|
|
static final double fontSize48 = 48.sp;
|
|
|
|
static final double fontSize52 = 52.sp;
|
|
|
|
///颜色
|
|
|
|
static const Color color111111 = Color(0xff111111);
|
|
|
|
static const Color color333333 = Color(0xff333333);
|
|
|
|
static const Color color666666 = Color(0xff666666);
|
|
|
|
static const Color color999999 = Color(0xff999999);
|
|
|
|
static const Color colorcccccc = Color(0xffcccccc);
|
|
|
|
static const Color colordddddd = Color(0xffdddddd);
|
|
|
|
static const Color colorfafafa = Color(0xfffafafa);
|
|
|
|
static const Color colorf3f3f3 = Color(0xfff3f3f3);
|
|
|
|
static const Color colorf6f6f6 = Color(0xfff6f6f6);
|
|
|
|
static const Color colorf9f9f9 = Color(0xfff9f9f9);
|
|
|
|
static const Color color474747 = Color(0xff474747);
|
|
|
|
static const Color colord8d8d8 = Color(0xffd8d8d8);
|
|
|
|
static const Color coloreeeeee = Color(0xffeeeeee);
|
|
|
|
static const Color colorff8500 = Color(0xffff8500);
|
|
|
|
static const Color colorffd000 = Color(0xffffd000);
|
|
|
|
static const Color color575757 = Color(0xff575757);
|
|
|
|
static const Color color4a4b51 = Color(0xff4a4b51);
|
|
|
|
static const Color colorababab = Color(0xffababab);
|
|
|
|
static const Color colorffc40c = Color(0xffffc40c);
|
|
|
|
static const Color color979797 = Color(0xff979797);
|
|
}
|