|
@@ -0,0 +1,134 @@
|
|
|
+//当HTML的data-theme为dark时,样式引用dark
|
|
|
+
|
|
|
+//data-theme为其他值时,就采用组件库的默认样式
|
|
|
+
|
|
|
+//这里我只定义了两套主题方案,想要再多只需在`$themes`里加就行了
|
|
|
+
|
|
|
+//注意一点是,每套配色方案里的key可以自定义但必须一致,不然就会混乱
|
|
|
+
|
|
|
+$themes: (
|
|
|
+
|
|
|
+ light: (
|
|
|
+
|
|
|
+ //边框
|
|
|
+ border_color1: #3d414a,
|
|
|
+ //底部导航--------------------------------------
|
|
|
+ //文字
|
|
|
+ font_tb_j: #666666,
|
|
|
+ font_tb_d: #f4d022,
|
|
|
+ // //背景
|
|
|
+ bd_tb_j:#111111,
|
|
|
+ //------------------------------------------------
|
|
|
+
|
|
|
+ //home/paddy首页-------------------------------------
|
|
|
+ //字体
|
|
|
+ font_centerBtn-p: #dab082,
|
|
|
+ font_detail_p: #daad70,
|
|
|
+ //背景图大小
|
|
|
+ background_size:100% 100%,
|
|
|
+ //渐变色文字
|
|
|
+ bgTextClip:text,
|
|
|
+ //背景
|
|
|
+ background_paddy_top:none,
|
|
|
+ background_paddy: url("~@/assets/images/home/bgImg.png") no-repeat center,
|
|
|
+ background_custom-indicator:#7c6d5b,
|
|
|
+ background_indicator-active:#daad71,
|
|
|
+ background_centerBtn-p:linear-gradient(-4deg,
|
|
|
+ #b8925c 0%,
|
|
|
+ #936e40 28.80859375%,
|
|
|
+ #f6c684 65.8203125%,
|
|
|
+ #936e40 100%),
|
|
|
+ background_baozhuangBox-fd:#613c0c,
|
|
|
+ background_middle-li:linear-gradient(0deg,
|
|
|
+ #a2794d,
|
|
|
+ #ba9363,
|
|
|
+ #cba66f,
|
|
|
+ #d7b27a,
|
|
|
+ #e3c48a,
|
|
|
+ #e3d097),
|
|
|
+ background_lastP:#0f0b06,
|
|
|
+ //-------------------------------------
|
|
|
+
|
|
|
+ //home/product兑换中心---------------------------------------
|
|
|
+ //文字
|
|
|
+ // font_tb_j: #b2812e,
|
|
|
+ font_product_footerBtn:#292929,
|
|
|
+ //背景
|
|
|
+ bd_product:#fcfcf0,
|
|
|
+ bd_product_packbox:#e6e6dc,
|
|
|
+ bd_product_footer:#e6e6dc,
|
|
|
+ bd_product_footerBtn:#e6e6dc,
|
|
|
+
|
|
|
+
|
|
|
+ //------------------------------------------------
|
|
|
+
|
|
|
+ //home/my个人中心--------------------------------
|
|
|
+ //文字
|
|
|
+ font_my_cell_list:#8a8a8a,
|
|
|
+ //背景
|
|
|
+ bd_my_mine_resume:#e6e6dc,
|
|
|
+ bd_my_cell_list:#fcfcf0,
|
|
|
+
|
|
|
+ //----------------------------------------------
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+ dark: (
|
|
|
+ //边框
|
|
|
+
|
|
|
+ border_color1: #3d414a,
|
|
|
+ //底部导航--------------------------------------
|
|
|
+ //文字
|
|
|
+ font_tb_j: #b2812e,
|
|
|
+ font_tb_d: #C42323,
|
|
|
+ // //背景
|
|
|
+ bd_tb_j:#ffffff,
|
|
|
+ //------------------------------------------------
|
|
|
+
|
|
|
+ //home/paddy首页-------------------------------------
|
|
|
+ //字体
|
|
|
+ font_centerBtn-p: #666666,
|
|
|
+ font_detail_p: #0f0b06,
|
|
|
+ //背景图大小
|
|
|
+ background_size:100% 100%,
|
|
|
+ //背景
|
|
|
+ background_paddy_top:#9d1020,
|
|
|
+ background_paddy: none,
|
|
|
+ background_custom-indicator:#7c6d5b,
|
|
|
+ background_indicator-active:#daad71,
|
|
|
+ background_centerBtn-p:none,
|
|
|
+ background_baozhuangBox-fd:#613c0c,
|
|
|
+ background_middle-li:linear-gradient(0deg,
|
|
|
+ #a2794d,
|
|
|
+ #ba9363,
|
|
|
+ #cba66f,
|
|
|
+ #d7b27a,
|
|
|
+ #e3c48a,
|
|
|
+ #e3d097),
|
|
|
+ background_lastP:#0f0b06,
|
|
|
+ //-------------------------------------
|
|
|
+
|
|
|
+ //home/product兑换中心---------------------------------------
|
|
|
+ //文字
|
|
|
+ font_product_footerBtn:#fff,
|
|
|
+ //背景
|
|
|
+ bd_product:#fff,
|
|
|
+ bd_product_packbox:#e6e6dc,
|
|
|
+ bd_product_footer:#eee,
|
|
|
+ bd_product_footerBtn:#c42323,
|
|
|
+ //------------------------------------------------
|
|
|
+
|
|
|
+ //home/my个人中心--------------------------------
|
|
|
+ //文字
|
|
|
+ font_my_cell_list:#8a8a8a,
|
|
|
+ //背景
|
|
|
+ bd_my_mine_resume:#fff,
|
|
|
+ bd_my_cell_list:#f5f5f5,
|
|
|
+
|
|
|
+ //----------------------------------------------
|
|
|
+
|
|
|
+
|
|
|
+ )
|
|
|
+);
|