23 lines
524 B
Dart
23 lines
524 B
Dart
/*
|
|
* @Author: zhangdongxue zhangdongxue@uz.cn
|
|
* @Date: 2022-05-26 13:16:03
|
|
* @LastEditors: zhangdongxue zhangdongxue@uz.cn
|
|
* @LastEditTime: 2022-05-27 14:30:37
|
|
* @FilePath: /gl_dao/lib/main_color.dart
|
|
* @Description: 封装色值
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
const tMainColor = Color(0xfffdbb03);
|
|
|
|
const tMainRedColor = Color(0xffc70909);
|
|
|
|
const tMainBg = Color(0xfff9f9f9);
|
|
|
|
const tTextColor333 = Color(0xff333333);
|
|
|
|
const tTextColor666 = Color(0xff666666);
|
|
|
|
const tTextColor999 = Color(0xff999999);
|