_themes.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. //当HTML的data-theme为dark时,样式引用dark
  2. //data-theme为其他值时,就采用组件库的默认样式
  3. //这里我只定义了两套主题方案,想要再多只需在`$themes`里加就行了
  4. //注意一点是,每套配色方案里的key可以自定义但必须一致,不然就会混乱
  5. $themes: (light: ( //边框
  6. border_color1: #3d414a,
  7. //底部导航--------------------------------------
  8. //文字
  9. font_tb_j: #666666,
  10. font_tb_d: #f4d022,
  11. // //背景
  12. bd_tb_j:#111111,
  13. //------------------------------------------------
  14. //头部导航--------------------------------------
  15. //文字
  16. font_van-nav-bar__title: #DAAD70,
  17. // font_tb_d: #f4d022,
  18. // //背景
  19. bd_head:#111111,
  20. //------------------------------------------------
  21. //home/paddy首页-------------------------------------
  22. //字体
  23. font_centerBtn-p: #dab082,
  24. font_detail_p: #daad70,
  25. //padding
  26. pd_paddy_top: none,
  27. //背景图大小
  28. background_size:100% 100%,
  29. //渐变色文字
  30. bgTextClip:text,
  31. //背景
  32. background_paddy_top:none,
  33. background_paddy: url("~@/assets/images/active1/home/bgImg.png") no-repeat center,
  34. background_custom-indicator:#7c6d5b,
  35. background_indicator-active:#daad71,
  36. background_centerBtn-p:linear-gradient(-4deg,
  37. #b8925c 0%,
  38. #936e40 28.80859375%,
  39. #f6c684 65.8203125%,
  40. #936e40 100%),
  41. background_baozhuangBox-fd:#613c0c,
  42. background_middle-li:linear-gradient(0deg,
  43. #a2794d,
  44. #ba9363,
  45. #cba66f,
  46. #d7b27a,
  47. #e3c48a,
  48. #e3d097),
  49. background_lastP:#0f0b06,
  50. //-------------------------------------
  51. //home/product兑换中心---------------------------------------
  52. //文字
  53. // font_tb_j: #b2812e,
  54. font_product_footerBtn:#292929,
  55. //背景
  56. bd_product:#fcfcf0,
  57. bd_product_packbox:#e6e6dc,
  58. bd_product_footer:#e6e6dc,
  59. bd_product_footerBtn:#e6e6dc,
  60. //------------------------------------------------
  61. //home/my个人中心--------------------------------
  62. //文字
  63. font_my_cell_list:#8a8a8a,
  64. //背景
  65. bd_my_mine_resume:#e6e6dc,
  66. bd_my_cell_list:#fcfcf0,
  67. //----------------------------------------------
  68. ),
  69. dark: ( //边框
  70. border_color1: #3d414a,
  71. //底部导航--------------------------------------
  72. //文字
  73. font_tb_j: #b2812e,
  74. font_tb_d: #C42323,
  75. // //背景
  76. bd_tb_j:#ffffff,
  77. //------------------------------------------------
  78. //头部导航--------------------------------------
  79. //文字
  80. // font_van-nav-bar__title: #DAAD70,
  81. font_van-nav-bar__title: #fff,
  82. // font_tb_d: #f4d022,
  83. // //背景
  84. bd_head:#C42323,
  85. //------------------------------------------------
  86. //home/paddy首页-------------------------------------
  87. //字体
  88. font_centerBtn-p: #666666,
  89. font_detail_p: #0f0b06,
  90. //padding
  91. pd_paddy_top: 12px 16px 10px 16px,
  92. //背景图大小
  93. background_size:100% 100%,
  94. //背景
  95. background_paddy_top:#9d1020,
  96. background_paddy: none,
  97. background_custom-indicator:#7c6d5b,
  98. background_indicator-active:#daad71,
  99. background_centerBtn-p:none,
  100. background_baozhuangBox-fd:#613c0c,
  101. background_middle-li:linear-gradient(0deg, #d5a15d 0%, #f0e09e 100%),
  102. background_lastP:#0f0b06,
  103. //-------------------------------------
  104. //home/product兑换中心---------------------------------------
  105. //文字
  106. font_product_footerBtn:#fff,
  107. //背景
  108. bd_product:#fff,
  109. bd_product_packbox:#e6e6dc,
  110. bd_product_footer:#eee,
  111. bd_product_footerBtn:#c42323,
  112. //------------------------------------------------
  113. //home/my个人中心--------------------------------
  114. //文字
  115. font_my_cell_list:#8a8a8a,
  116. //背景
  117. bd_my_mine_resume:#fff,
  118. bd_my_cell_list:#f5f5f5,
  119. //----------------------------------------------
  120. ));