colors.dart 756 B

123456789101112131415161718192021222324252627
  1. // ignore_for_file: constant_identifier_names
  2. import 'package:flutter/painting.dart';
  3. /// 测量颜色集合
  4. class MeasureColors {
  5. /// 主色
  6. static const Color Primary = Color.fromARGB(255, 255, 255, 0);
  7. /// 测量时卡尺颜色
  8. static const Color ActiveCaliper = Color.fromARGB(255, 98, 203, 34);
  9. /// 背景色
  10. static const Color Background = Color.fromARGB(255, 0, 0, 0);
  11. /// 结果面板滚动条颜色
  12. static const Color ResultScrollbar = Color.fromARGB(255, 90, 90, 90);
  13. /// 结果面板边框颜色
  14. static const Color ResultBorder = Color.fromARGB(255, 92, 92, 92);
  15. /// 隐藏不显示【透明色】
  16. static const Color Hide = Color.fromARGB(0, 0, 0, 0);
  17. /// 活动主色
  18. static Color ActivePrimary = Primary;
  19. }