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.
aku_new_community/lib/base/base_style.dart

69 lines
1.8 KiB

import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
4 years ago
import 'package:akuCommunity/utils/headers.dart';
const ktextPrimary = Color(0xff333333);
const ktextSubColor = Color(0xff666666);
const kForeGroundColor = Color(0xFFFFFFFF);
const kPrimaryColor=Color(0xFFFFC40C);
const kDarkPrimaryColor=Color(0xFFFF8200);
const kDangerColor=Color(0xFFFF3B30);
const kEstateName='宁波华悦茂峰';
const kDarkSubColor=Color(0xFF979797);
class BaseStyle {
///字体类
4 years ago
static final double fontSize18 = 18.sp;
4 years ago
static final double fontSize22 = 22.sp;
4 years ago
static final double fontSize24 = 24.sp;
4 years ago
static final double fontSize26 = 26.sp;
4 years ago
static final double fontSize28 = 28.sp;
4 years ago
static final double fontSize30 = 30.sp;
4 years ago
static final double fontSize32 = 32.sp;
4 years ago
static final double fontSize34 = 34.sp;
4 years ago
static final double fontSize36 = 36.sp;
4 years ago
static final double fontSize38 = 38.sp;
4 years ago
static final double fontSize52 = 52.sp;
///颜色
static final Color color666666 = Color(0xff666666);
static final Color color999999 = Color(0xff999999);
static final Color colorfafafa = Color(0xfffafafa);
static final Color colorf3f3f3 = Color(0xfff3f3f3);
static final Color colorf9f9f9 = Color(0xfff9f9f9);
static final Color color474747 = Color(0xff474747);
static final Color colord8d8d8 = Color(0xffd8d8d8);
static final Color coloreeeeee = Color(0xffeeeeee);
static final Color colorff8500 = Color(0xffff8500);
static final Color colorffd000 = Color(0xffffd000);
static final Color color575757 = Color(0xff575757);
static final Color color4a4b51 = Color(0xff4a4b51);
static final Color colorababab = Color(0xffababab);
static final Color colorffc40c = Color(0xffffc40c);
static final Color color979797 = Color(0xff979797);
}