您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

11 行
359 B

  1. import 'package:flutter/material.dart';
  2. class UIConfig {
  3. final Color mainGreen = const Color(0xff0A8754);
  4. final Color buttongreen = const Color(0xff04A54F);
  5. final Color secendGreen = const Color.fromARGB(255, 75, 173, 78);
  6. final Color mainGray = const Color(0xff333333);
  7. final Color backGroundColor = const Color(0xffedf7ee);
  8. const UIConfig();
  9. }