color.wxss 281 B

12345678910111213141516171819202122232425
  1. /**
  2. * color.wxss包含本程序主要的文本颜色,背景颜色
  3. */
  4. /* 背景颜色 */
  5. .bg-gray {
  6. background-color: #eeeeee;
  7. }
  8. /* 字体颜色 */
  9. .text-black {
  10. color: #181818;
  11. }
  12. .text-red {
  13. color: #f00;
  14. }
  15. .text-orange {
  16. color: orange;
  17. }
  18. .text-gray {
  19. color: #aaaaaa;
  20. }