color.wxss 285 B

1234567891011121314151617181920212223
  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. }