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.
 
 
 
 
 
 

33 rivejä
1.6 KiB

  1. import 'package:flutter/material.dart';
  2. import 'package:demo001/tools/color_utils.dart';
  3. class Style {
  4. static final greenBold =
  5. TextStyle(color: green, fontSize: 18, fontWeight: FontWeight.bold);
  6. static final navTitle =
  7. TextStyle(color: white, fontSize: 18, fontWeight: FontWeight.bold);
  8. static final normalWhiteGrey =
  9. TextStyle(color: whiteGrey, fontSize: 14, fontWeight: FontWeight.bold);
  10. static final normalBold =
  11. TextStyle(color: white, fontSize: 16, fontWeight: FontWeight.bold);
  12. static final normal = TextStyle(color: white, fontSize: 16);
  13. static final normalGrey =
  14. TextStyle(color: const Color.fromARGB(255, 92, 92, 92), fontSize: 16);
  15. static final normalSmall = TextStyle(color: white, fontSize: 14);
  16. static final normalGreySmall =
  17. TextStyle(color: const Color.fromARGB(255, 92, 92, 92), fontSize: 14);
  18. static final normalSmall2 = TextStyle(color: white, fontSize: 12);
  19. static final normalGreySmall2 =
  20. TextStyle(color: const Color.fromARGB(255, 92, 92, 92), fontSize: 12);
  21. static final normalBlueSmall2 = TextStyle(color: blue, fontSize: 12);
  22. static final normalSmallWhiteGrey = TextStyle(color: whiteGrey, fontSize: 14);
  23. static final normalSmallBoldWhiteGrey =
  24. TextStyle(color: whiteGrey, fontSize: 14, fontWeight: FontWeight.bold);
  25. static final clean = TextStyle(
  26. color: Colors.transparent, fontSize: 14, fontWeight: FontWeight.bold);
  27. static final homeItemTextStyle =
  28. TextStyle(fontSize: 14, color: white, fontWeight: FontWeight.bold);
  29. static final hintStyle = TextStyle(fontSize: 14, color: grey);
  30. }