| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- // 主颜色
- $app-theme-color: #38C148;
- $app-theme-light-color: #38C148;
- $app-theme-deep-color: #20a333;
- $app-theme-blue: #2979ff;
- // 背景色
- $app-theme-bg-color: #ffffff;
- $app-theme-bg-gray-color: #fafafa;
- $app-theme-bg-gray-deep-color: #f8f8f8;
- $app-theme-search-bg-color: #F4F5F8;
- // 内容色
- $app-theme-border-color: #efefef;
- $app-theme-text-color: #333333;
- $app-theme-text-gray-color: #8f92a1;
- $app-theme-card-gray-light-color: #cccccc;
- $app-theme-card-gray-deep-color: #696969;
- $app-theme-text-white-color: #ffffff;
- $app-theme-text-black-color: #171717;
- $app-theme-text-black-deep-color: #16162e;
- $app-theme-text-money-color: #f00;
- $app-theme-text-gray-white-color: #c3c6cb;
- // 特殊位置
- $app-theme-navbar-tab-color: #696969;
- $app-theme-navbar-tab-color-active: #333333;
- $app-theme-card-gray-color: #8f92a1;
- $app-theme-sku-gray-color: #f5f5f8;
- $app-theme-shop-gray-color: #888e98;
- $app-theme-points-sign-bg-color: #f0f0f0;
- $app-theme-points-sign-label-bg-color: #dfdfdf;
- $app-theme-points-sign-value-color: #696969;
- $app-theme-points-yellow-color: #f9a906;
- $app-theme-points-blue-color: #22ac38;
- // 加入购物车背景色
- $app-theme-joincart-bg-color: #ff7900;
- // 立即购买背景色
- $app-theme-buybtn-bg-color: #ed3f14;
- // 已售罄背景色
- $app-theme-nobuy-bg-color: #aaa;
- // 背景色
- $app-theme-shadow: 0px 2px 8px 0px rgba(27, 25, 86, 0.06);
- // z-index值
- $app-zIndex-deep: 0;
- $app-zIndex-normal: 19;
- $app-zIndex-absolute: 99;
- $app-zIndex-fixed: 199;
- $app-zIndex-page: 999;
- // 全局.page
- .page {
- // min-height: 100vh;
- background-color: $app-theme-bg-gray-deep-color;
- font-family: PingFangSC;
- }
- .safeAreaPad{
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- // 全局.slot
- .slot {
- }
- :export {
- appThemeColor: $app-theme-color;
- appThemeBgColor: $app-theme-bg-color;
- appThemeBgGrayColor: $app-theme-bg-gray-color;
- appThemeBgGrayDeppColor: $app-theme-bg-gray-deep-color;
- appThemeSearchBgColor: $app-theme-search-bg-color;
- appThemeBorderColor: $app-theme-border-color;
- appThemeTextColor: $app-theme-text-color;
- appThemeTextGrayColor: $app-theme-text-gray-color;
- appThemeTextGrayLightColor: $app-theme-card-gray-light-color;
- appThemeTextGrayDeepColor: $app-theme-card-gray-deep-color;
- appThemeTextWhiteColor: $app-theme-text-white-color;
- appThemeTextBlackColor: $app-theme-text-black-color;
- appThemeTextBlackDeepColor: $app-theme-text-black-deep-color;
- appThemeTextMoneyColor: $app-theme-text-money-color;
- appThemeTextGrayWhiteColor: $app-theme-text-gray-white-color;
- appThemeSkuGrayColor: $app-theme-sku-gray-color;
- appThemeCardGrayColor: $app-theme-card-gray-color;
- appThemeShopGrayColor: $app-theme-shop-gray-color;
- appThemePointsSignBgColor: $app-theme-points-sign-bg-color;
- appThemePointsSignLabelColor: $app-theme-points-sign-label-bg-color;
- appThemePointsSignValueColor: $app-theme-points-sign-value-color;
- appThemePointsSignYellowColor: $app-theme-points-yellow-color;
- appThemePointsSignBlueColor: $app-theme-points-blue-color;
- appThemeNavbarTabColor: $app-theme-navbar-tab-color;
- appThemeNavbarTabColorActive: $app-theme-navbar-tab-color-active;
- appThemeShadow: $app-theme-shadow;
- appZIndexDeep: $app-zIndex-deep;
- appZIndexNormal: $app-zIndex-normal;
- appZIndexAbsolute: $app-zIndex-absolute;
- appZIndexFixed: $app-zIndex-fixed;
- appZIndexPage: $app-zIndex-page;
-
- appThemeBuyBtnBgColor:$app-theme-buybtn-bg-color;
- }
|