FuCustomTheme constructor

FuCustomTheme({
  1. Color border1 = const Color(0xffeeeeee),
  2. Color border2 = const Color(0xffe6e6e6),
  3. Color bgLayer1 = const Color(0xfff0f0f0),
  4. Color bgLayer2 = const Color(0xfffefefe),
  5. Color disabledColor = const Color(0xffdcc7ff),
  6. Color onDisabled = const Color(0xffffffff),
  7. Color colorWarning = const Color(0xffffc837),
  8. Color colorInfo = const Color(0xffff784b),
  9. Color colorSuccess = const Color(0xff3cd278),
  10. Color shadowColor = const Color(0xff1f1f1f),
  11. Color onInfo = const Color(0xffffffff),
  12. Color onWarning = const Color(0xffffffff),
  13. Color onSuccess = const Color(0xffffffff),
  14. Color colorError = const Color(0xfff0323c),
  15. Color onError = const Color(0xffffffff),
  16. Color lightBlack = const Color(0xffa7a7a7),
  17. Color red = const Color(0xffFF0000),
  18. Color green = const Color(0xff008000),
  19. Color yellow = const Color(0xfffff44f),
  20. Color orange = const Color(0xffFFA500),
  21. Color blue = const Color(0xff0000ff),
  22. Color purple = const Color(0xff800080),
  23. Color pink = const Color(0xffFFC0CB),
  24. Color brown = const Color(0xffA52A2A),
  25. Color withe = const Color(0xffeeeeee),
  26. Color blueToWithe = const Color(0xff0000ff),
  27. Color blackToWithe = const Color(0xFF1C1C22),
})

Implementation

FuCustomTheme({
  this.border1 = const Color(0xffeeeeee),
  this.border2 = const Color(0xffe6e6e6),
  this.bgLayer1 = const Color(0xfff0f0f0),
  this.bgLayer2 = const Color(0xfffefefe),
  this.disabledColor = const Color(0xffdcc7ff),
  this.onDisabled = const Color(0xffffffff),
  this.colorWarning = const Color(0xffffc837),
  this.colorInfo = const Color(0xffff784b),
  this.colorSuccess = const Color(0xff3cd278),
  this.shadowColor = const Color(0xff1f1f1f),
  this.onInfo = const Color(0xffffffff),
  this.onWarning = const Color(0xffffffff),
  this.onSuccess = const Color(0xffffffff),
  this.colorError = const Color(0xfff0323c),
  this.onError = const Color(0xffffffff),

  //Color
  this.lightBlack = const Color(0xffa7a7a7),
  this.red = const Color(0xffFF0000),
  this.green = const Color(0xff008000),
  this.yellow = const Color(0xfffff44f),
  this.orange = const Color(0xffFFA500),
  this.blue = const Color(0xff0000ff),
  this.purple = const Color(0xff800080),
  this.pink = const Color(0xffFFC0CB),
  this.brown = const Color(0xffA52A2A),
  this.withe = const Color(0xffeeeeee),
  this.blueToWithe = const Color(0xff0000ff),
  this.blackToWithe = const Color(0xFF1C1C22),
});