mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
292 lines
8.1 KiB
Plaintext
292 lines
8.1 KiB
Plaintext
// Basic Colors
|
|
@black: #000;
|
|
@white: #fff;
|
|
@red: #ee0a24;
|
|
@blue: #1989fa;
|
|
@orange: #ff976a;
|
|
@orange-dark: #ed6a0c;
|
|
@orange-light: #fffbe8;
|
|
@green: #07c160;
|
|
@gray: #c8c9cc;
|
|
@gray-light: #e5e5e5;
|
|
@gray-darker: #7d7e80;
|
|
@gray-dark: #969799;
|
|
|
|
// Gradient Colors
|
|
@gradient-red: linear-gradient(to right, #ff6034, #ee0a24);
|
|
@gradient-orange: linear-gradient(to right, #ffd01e, #ff8917);
|
|
|
|
// Component Colors
|
|
@text-color: #323233;
|
|
@active-color: #f2f3f5;
|
|
@active-opacity: .7;
|
|
@disabled-opacity: .5;
|
|
@background-color: #f8f8f8;
|
|
@background-color-light: #fafafa;
|
|
|
|
// Padding
|
|
@padding-base: 4px;
|
|
@padding-xs: @padding-base * 2;
|
|
@padding-sm: @padding-base * 3;
|
|
@padding-md: @padding-base * 4;
|
|
@padding-lg: @padding-base * 6;
|
|
@padding-xl: @padding-base * 8;
|
|
|
|
// Font
|
|
@font-size-xs: 10px;
|
|
@font-size-sm: 12px;
|
|
@font-size-md: 14px;
|
|
@font-size-lg: 16px;
|
|
@font-weight-bold: 500;
|
|
|
|
// Animation
|
|
@animation-duration-base: .3s;
|
|
@animation-duration-fast: .2s;
|
|
|
|
// Border
|
|
@border-color: #ebedf0;
|
|
@border-width-base: 1px;
|
|
@border-radius-sm: 2px;
|
|
@border-radius-md: 4px;
|
|
@border-radius-max: 999px;
|
|
|
|
//ActionSheet
|
|
@action-sheet-max-height: 90%;
|
|
@action-sheet-header-height: 44px;
|
|
@action-sheet-header-font-size: @font-size-lg;
|
|
@action-sheet-description-color: @gray-darker;
|
|
@action-sheet-description-font-size: @font-size-md;
|
|
@action-sheet-description-line-height: 20px;
|
|
@action-sheet-item-height: 50px;
|
|
@action-sheet-item-background: @white;
|
|
@action-sheet-item-font-size: @font-size-lg;
|
|
@action-sheet-item-text-color: @text-color;
|
|
@action-sheet-item-disabled-text-color: @gray;
|
|
@action-sheet-subname-color: @gray-darker;
|
|
@action-sheet-subname-font-size: @font-size-sm;
|
|
@action-sheet-close-icon-size: 18px;
|
|
@action-sheet-close-icon-color: @gray-dark;
|
|
@action-sheet-close-icon-padding: 0 @padding-sm;
|
|
@action-sheet-cancel-padding-top: @padding-xs;
|
|
@action-sheet-cancel-padding-color: @background-color;
|
|
|
|
// Button
|
|
@button-mini-height: 22px;
|
|
@button-mini-min-width: 50px;
|
|
@button-mini-font-size: @font-size-xs;
|
|
@button-mini-line-height: 20px;
|
|
@button-small-height: 30px;
|
|
@button-small-font-size: @font-size-sm;
|
|
@button-small-min-width: 60px;
|
|
@button-small-line-height: 28px;
|
|
@button-normal-font-size: @font-size-md;
|
|
@button-large-height: 50px;
|
|
@button-large-line-height: 48px;
|
|
@button-default-color: @text-color;
|
|
@button-default-height: 44px;
|
|
@button-default-line-height: 42px;
|
|
@button-default-font-size: @font-size-lg;
|
|
@button-default-background-color: @white;
|
|
@button-default-border-color: @border-color;
|
|
@button-primary-color: @white;
|
|
@button-primary-background-color: @green;
|
|
@button-primary-border-color: @green;
|
|
@button-info-color: @white;
|
|
@button-info-background-color: @blue;
|
|
@button-info-border-color: @blue;
|
|
@button-danger-color: @white;
|
|
@button-danger-background-color: @red;
|
|
@button-danger-border-color: @red;
|
|
@button-warning-color: @white;
|
|
@button-warning-background-color: @orange;
|
|
@button-warning-border-color: @orange;
|
|
@button-border-radius: @border-radius-sm;
|
|
@button-round-border-radius: @border-radius-max;
|
|
@button-plain-background-color: @white;
|
|
@button-disabled-opacity: @disabled-opacity;
|
|
|
|
// Card
|
|
@card-padding: @padding-xs @padding-md;
|
|
@card-font-size: @font-size-sm;
|
|
@card-text-color: @text-color;
|
|
@card-background-color: @background-color-light;
|
|
@card-thumb-size: 90px;
|
|
@card-title-line-height: 16px;
|
|
@card-desc-color: @gray-darker;
|
|
@card-desc-line-height: 20px;
|
|
@card-price-color: @red;
|
|
@card-origin-price-color: @gray-darker;
|
|
@card-origin-price-font-size: @font-size-xs;
|
|
|
|
// Checkbox
|
|
@checkbox-size: 20px;
|
|
@checkbox-border-color: @gray-light;
|
|
@checkbox-transition-duration: .2s;
|
|
@checkbox-label-margin: 10px;
|
|
@checkbox-label-color: @text-color;
|
|
@checkbox-checked-icon-color: @blue;
|
|
@checkbox-disabled-icon-color: @gray;
|
|
@checkbox-disabled-label-color: @gray;
|
|
@checkbox-disabled-background-color: @border-color;
|
|
|
|
// Circle
|
|
@circle-text-color: @text-color;
|
|
|
|
// Collapse
|
|
@collapse-item-transition-duration: .3s;
|
|
@collapse-item-content-padding: 15px;
|
|
@collapse-item-content-font-size: 13px;
|
|
@collapse-item-content-line-height: 1.5;
|
|
@collapse-item-content-text-color: @gray-dark;
|
|
@collapse-item-content-background-color: @white;
|
|
@collapse-item-title-disabled-color: @gray;
|
|
|
|
// CountDown
|
|
@count-down-text-color: @text-color;
|
|
@count-down-font-size: @font-size-md;
|
|
@count-down-line-height: 20px;
|
|
|
|
// Image
|
|
@image-placeholder-text-color: @gray-dark;
|
|
@image-placeholder-font-size: @font-size-md;
|
|
@image-placeholder-background-color: @background-color;
|
|
|
|
// Info
|
|
@info-size: 16px;
|
|
@info-color: @white;
|
|
@info-padding: 0 3px;
|
|
@info-font-size: 12px;
|
|
@info-font-weight: 500;
|
|
@info-border-width: 1px;
|
|
@info-background-color: @red;
|
|
@info-dot-color: @red;
|
|
@info-dot-size: 8px;
|
|
@info-font-family: PingFang SC, Helvetica Neue, Arial, sans-serif;
|
|
|
|
// NavBar
|
|
@nav-bar-height: 44px;
|
|
|
|
// Notify
|
|
@notify-padding: 6px 15px;
|
|
@notify-font-size: 14px;
|
|
@notify-line-height: 20px;
|
|
@notify-primary-background-color: @blue;
|
|
@notify-success-background-color: @green;
|
|
@notify-danger-background-color: @red;
|
|
@notify-warning-background-color: @orange;
|
|
|
|
// Overlay
|
|
@overlay-background-color: rgba(0, 0, 0, 0.7);
|
|
|
|
// Popup
|
|
@popup-round-border-radius: 20px;
|
|
@popup-close-icon-size: 18px;
|
|
@popup-close-icon-color: @gray-dark;
|
|
@popup-close-icon-margin: 16px;
|
|
@popup-close-icon-z-index: 1;
|
|
|
|
// Radio
|
|
@radio-size: 20px;
|
|
@radio-border-color: @gray-light;
|
|
@radio-transition-duration: .2s;
|
|
@radio-label-margin: 10px;
|
|
@radio-label-color: @text-color;
|
|
@radio-checked-icon-color: @blue;
|
|
@radio-disabled-icon-color: @gray;
|
|
@radio-disabled-label-color: @gray;
|
|
@radio-disabled-background-color: @border-color;
|
|
|
|
// Rate
|
|
@rate-horizontal-padding: 2px;
|
|
|
|
// Switch
|
|
@switch-width: 2em;
|
|
@switch-height: 1em;
|
|
@switch-node-size: 1em;
|
|
@switch-node-z-index: 1;
|
|
@switch-node-background-color: @white;
|
|
@switch-node-box-shadow: 0 3px 1px 0 rgba(0, 0, 0, .05), 0 2px 2px 0 rgba(0, 0, 0, .1), 0 3px 3px 0 rgba(0, 0, 0, .05);
|
|
@switch-background-color: @white;
|
|
@switch-on-background-color: @blue;
|
|
@switch-transition-duration: .3s;
|
|
@switch-disabled-opacity: .4;
|
|
@switch-border: 1px solid rgba(0, 0, 0, .1);
|
|
|
|
// Search
|
|
@search-background-color: #f7f8fA;
|
|
|
|
// Stepper
|
|
@stepper-active-color: #e8e8e8;
|
|
@stepper-background-color: @active-color;
|
|
@stepper-button-disabled-color: #f7f8fa;
|
|
@stepper-input-disabled-color: @active-color;
|
|
@stepper-border-radius: 4px;
|
|
|
|
// SubmitBar
|
|
@submit-bar-height: 50px;
|
|
@submit-bar-z-index: 100;
|
|
@submit-bar-background-color: @white;
|
|
@submit-bar-button-width: 110px;
|
|
@submit-bar-price-color: @red;
|
|
@submit-bar-price-font-size: 18px;
|
|
@submit-bar-currency-font-size: 14px;
|
|
@submit-bar-text-color: @text-color;
|
|
@submit-bar-text-font-size: 14px;
|
|
@submit-bar-tip-padding: 10px;
|
|
@submit-bar-tip-font-size: 12px;
|
|
@submit-bar-tip-line-height: 1.5;
|
|
@submit-bar-tip-color: #f56723;
|
|
@submit-bar-tip-background-color: #fff7cc;
|
|
@submit-bar-tip-icon-size: 12px;
|
|
|
|
// Tag
|
|
@tag-dander-color: @red;
|
|
@tag-primary-color: @blue;
|
|
@tag-success-color: @green;
|
|
@tag-warning-color: @orange;
|
|
@tag-default-color: @gray-dark;
|
|
@tag-plain-background-color: @white;
|
|
|
|
// Toast
|
|
@toast-max-width: 70%;
|
|
@toast-font-size: 14px;
|
|
@toast-text-color: @white;
|
|
@toast-line-height: 20px;
|
|
@toast-border-radius: 4px;
|
|
@toast-background-color: rgba(@text-color, .88);
|
|
@toast-icon-size: 48px;
|
|
@toast-text-min-width: 96px;
|
|
@toast-text-padding: 8px 12px;
|
|
@toast-default-padding: 15px;
|
|
@toast-default-width: 90px;
|
|
@toast-default-min-height: 90px;
|
|
|
|
// GridItem
|
|
@grid-item-content-padding: @padding-md @padding-xs;
|
|
@grid-item-content-background-color: @white;
|
|
@grid-item-content-active-color: @active-color;
|
|
@grid-item-icon-size: 26px;
|
|
@grid-item-text-color: @gray-darker;
|
|
@grid-item-text-font-size: @font-size-sm;
|
|
|
|
// Divider
|
|
@divider-margin: @padding-md 0;
|
|
@divider-text-color: @gray-dark;
|
|
@divider-font-size: @font-size-md;
|
|
@divider-line-height: 24px;
|
|
@divider-border-color: @border-color;
|
|
@divider-content-padding: @padding-md;
|
|
@divider-content-left-width: 10%;
|
|
@divider-content-right-width: 10%;
|
|
|
|
// DropdownMenu
|
|
@dropdown-menu-height: 50px;
|
|
@dropdown-menu-background-color: @white;
|
|
@dropdown-menu-title-font-size: 15px;
|
|
@dropdown-menu-title-text-color: @text-color;
|
|
@dropdown-menu-title-active-text-color: @blue;
|
|
@dropdown-menu-title-disabled-text-color: @gray-dark;
|
|
@dropdown-menu-title-padding: 0 @padding-xs;
|
|
@dropdown-menu-title-line-height: 18px;
|
|
@dropdown-menu-option-active-color: @blue;
|