red-color.scss 645 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //背景颜色
  2. .red-box .sys-background-dominant{
  3. background-color: red;;
  4. }
  5. .red-box .sys-background-fff{
  6. background-color: #fff;;
  7. }
  8. .red-box .sys-from-background-color{
  9. background: #F7F9FE;
  10. }
  11. .red-box {
  12. background-color: #EEF1F7;
  13. }
  14. //字体颜色
  15. //主字体颜色
  16. .red-box .text-color-dominant{
  17. color: #10B261;
  18. }
  19. //主背景颜色中字体颜色
  20. .red-box .text-color-fff{
  21. color: #fff;
  22. }
  23. //次文字颜色
  24. .red-box .text-color-333{
  25. color: #333333;
  26. }
  27. .red-box .text-color-666{
  28. color: #666;
  29. }
  30. .red-box .text-color-999{
  31. color: #999;
  32. }
  33. .red-box .text-color-7c{
  34. color: #7C7C7C;
  35. }
  36. .red-box .text-color-12{
  37. color: #121212;
  38. }