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.
11 lines
308 B
11 lines
308 B
4 years ago
|
import 'package:flutter/material.dart';
|
||
|
class AppStyle {
|
||
|
//颜色,渐变主颜色和次级颜色
|
||
|
static const primaryColor =Color(0xFFFDCF12);
|
||
|
static const minorColor=Color(0xFFFFDF5D);
|
||
|
|
||
|
//字体
|
||
|
static const primaryTextColor=Color(0xFF333333);
|
||
|
static const minorTextColor=Color(0xFF999999);
|
||
|
|
||
|
}
|