123456789101112131415161718192021222324 |
- import 'package:flutter/painting.dart';
- class MeasureColors {
-
- static const Color Primary = Color.fromARGB(255, 255, 255, 0);
-
- static const Color ActiveCaliper = Color.fromARGB(255, 98, 203, 34);
-
- static const Color Background = Color.fromARGB(255, 0, 0, 0);
-
- static const Color ResultScrollbar = Color.fromARGB(255, 90, 90, 90);
-
- static const Color ResultBorder = Color.fromARGB(255, 92, 92, 92);
-
- static const Color Hide = Color.fromARGB(0, 0, 0, 0);
- }
|