123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901 |
- // Color Palette
- @black: #000;
- @white: #fff;
- @gray-1: #f7f8fa;
- @gray-2: #f2f3f5;
- @gray-3: #ebedf0;
- @gray-4: #dcdee0;
- @gray-5: #c8c9cc;
- @gray-6: #969799;
- @gray-7: #646566;
- @gray-8: #323233;
- @red: #ee0a24;
- @blue: #1989fa;
- @orange: #ff976a;
- @orange-dark: #ed6a0c;
- @orange-light: #fffbe8;
- @green: #07c160;
- // Gradient Colors
- @gradient-red: linear-gradient(to right, #ff6034, #ee0a24);
- @gradient-orange: linear-gradient(to right, #ffd01e, #ff8917);
- // Component Colors
- @text-color: @gray-8;
- @active-color: @gray-2;
- @active-opacity: 0.7;
- @disabled-opacity: 0.5;
- @background-color: @gray-1;
- @background-color-light: #fafafa;
- @text-link-color: #576b95;
- // 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;
- @line-height-xs: 14px;
- @line-height-sm: 18px;
- @line-height-md: 20px;
- @line-height-lg: 22px;
- @base-font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
- Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB',
- 'Microsoft Yahei', sans-serif;
- @price-integer-font-family: Avenir-Heavy, PingFang SC, Helvetica Neue, Arial,
- sans-serif;
- // Animation
- @animation-duration-base: 0.3s;
- @animation-duration-fast: 0.2s;
- @animation-timing-function-enter: ease-out;
- @animation-timing-function-leave: ease-in;
- // Border
- @border-color: @gray-3;
- @border-width-base: 1px;
- @border-radius-sm: 2px;
- @border-radius-md: 4px;
- @border-radius-lg: 8px;
- @border-radius-max: 999px;
- // ActionSheet
- @action-sheet-max-height: 80%;
- @action-sheet-header-height: 48px;
- @action-sheet-header-font-size: @font-size-lg;
- @action-sheet-description-color: @gray-6;
- @action-sheet-description-font-size: @font-size-md;
- @action-sheet-description-line-height: @line-height-md;
- @action-sheet-item-background: @white;
- @action-sheet-item-font-size: @font-size-lg;
- @action-sheet-item-line-height: @line-height-lg;
- @action-sheet-item-text-color: @text-color;
- @action-sheet-item-disabled-text-color: @gray-5;
- @action-sheet-subname-color: @gray-6;
- @action-sheet-subname-font-size: @font-size-sm;
- @action-sheet-subname-line-height: @line-height-sm;
- @action-sheet-close-icon-size: 22px;
- @action-sheet-close-icon-color: @gray-5;
- @action-sheet-close-icon-active-color: @gray-6;
- @action-sheet-close-icon-padding: 0 @padding-md;
- @action-sheet-cancel-text-color: @gray-7;
- @action-sheet-cancel-padding-top: @padding-xs;
- @action-sheet-cancel-padding-color: @background-color;
- @action-sheet-loading-icon-size: 22px;
- // AddressEdit
- @address-edit-padding: @padding-sm;
- @address-edit-buttons-padding: @padding-xl @padding-base;
- @address-edit-button-margin-bottom: @padding-sm;
- @address-edit-detail-finish-color: @blue;
- @address-edit-detail-finish-font-size: @font-size-sm;
- // AddressList
- @address-list-padding: @padding-sm @padding-sm 80px;
- @address-list-disabled-text-color: @gray-6;
- @address-list-disabled-text-padding: @padding-base * 5 0 @padding-md;
- @address-list-disabled-text-font-size: @font-size-md;
- @address-list-disabled-text-line-height: @line-height-md;
- @address-list-add-button-z-index: 999;
- @address-list-item-padding: @padding-sm;
- @address-list-item-text-color: @text-color;
- @address-list-item-disabled-text-color: @gray-5;
- @address-list-item-font-size: 13px;
- @address-list-item-line-height: @line-height-sm;
- @address-list-item-radio-icon-color: @red;
- @address-list-edit-icon-size: 20px;
- // Badge
- @badge-size: 16px;
- @badge-color: @white;
- @badge-padding: 0 3px;
- @badge-font-size: @font-size-sm;
- @badge-font-weight: @font-weight-bold;
- @badge-border-width: @border-width-base;
- @badge-background-color: @red;
- @badge-dot-color: @red;
- @badge-dot-size: 8px;
- @badge-font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
- // Button
- @button-mini-height: 24px;
- @button-mini-font-size: @font-size-xs;
- @button-small-height: 32px;
- @button-small-font-size: @font-size-sm;
- @button-normal-font-size: @font-size-md;
- @button-large-height: 50px;
- @button-default-height: 44px;
- @button-default-line-height: 1.2;
- @button-default-font-size: @font-size-lg;
- @button-default-color: @text-color;
- @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-width: @border-width-base;
- @button-border-radius: @border-radius-sm;
- @button-round-border-radius: @border-radius-max;
- @button-plain-background-color: @white;
- @button-disabled-opacity: @disabled-opacity;
- // Calendar
- @calendar-background-color: @white;
- @calendar-popup-height: 80%;
- @calendar-header-box-shadow: 0 2px 10px rgba(125, 126, 128, 0.16);
- @calendar-header-title-height: 44px;
- @calendar-header-title-font-size: @font-size-lg;
- @calendar-header-subtitle-font-size: @font-size-md;
- @calendar-weekdays-height: 30px;
- @calendar-weekdays-font-size: @font-size-sm;
- @calendar-month-title-font-size: @font-size-md;
- @calendar-month-mark-color: fade(@gray-2, 80%);
- @calendar-month-mark-font-size: 160px;
- @calendar-day-height: 64px;
- @calendar-day-font-size: @font-size-lg;
- @calendar-range-edge-color: @white;
- @calendar-range-edge-background-color: @red;
- @calendar-range-middle-color: @red;
- @calendar-range-middle-background-opacity: 0.1;
- @calendar-selected-day-size: 54px;
- @calendar-selected-day-color: @white;
- @calendar-info-font-size: @font-size-xs;
- @calendar-info-line-height: @line-height-xs;
- @calendar-selected-day-background-color: @red;
- @calendar-day-disabled-color: @gray-5;
- @calendar-confirm-button-height: 36px;
- @calendar-confirm-button-margin: 7px 0;
- // 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: 88px;
- @card-thumb-border-radius: @border-radius-lg;
- @card-title-line-height: 16px;
- @card-desc-color: @gray-7;
- @card-desc-line-height: @line-height-md;
- @card-price-color: @gray-8;
- @card-origin-price-color: @gray-6;
- @card-num-color: @gray-6;
- @card-origin-price-font-size: @font-size-xs;
- @card-price-font-size: @font-size-sm;
- @card-price-integer-font-size: @font-size-lg;
- @card-price-font-family: @price-integer-font-family;
- // Cascader
- @cascader-header-height: 48px;
- @cascader-title-font-size: @font-size-lg;
- @cascader-title-line-height: 20px;
- @cascader-close-icon-size: 22px;
- @cascader-close-icon-color: @gray-5;
- @cascader-close-icon-active-color: @gray-6;
- @cascader-selected-icon-size: 18px;
- @cascader-tabs-height: 48px;
- @cascader-active-color: @red;
- @cascader-options-height: 384px;
- @cascader-tab-color: @text-color;
- @cascader-unselected-tab-color: @gray-6;
- // Cell
- @cell-font-size: @font-size-md;
- @cell-line-height: 24px;
- @cell-vertical-padding: 10px;
- @cell-horizontal-padding: @padding-md;
- @cell-text-color: @text-color;
- @cell-background-color: @white;
- @cell-border-color: @border-color;
- @cell-active-color: @active-color;
- @cell-required-color: @red;
- @cell-label-color: @gray-6;
- @cell-label-font-size: @font-size-sm;
- @cell-label-line-height: @line-height-sm;
- @cell-label-margin-top: @padding-base;
- @cell-value-color: @gray-6;
- @cell-icon-size: 16px;
- @cell-right-icon-color: @gray-6;
- @cell-large-vertical-padding: @padding-sm;
- @cell-large-title-font-size: @font-size-lg;
- @cell-large-label-font-size: @font-size-md;
- // CellGroup
- @cell-group-background-color: @white;
- @cell-group-title-color: @gray-6;
- @cell-group-title-padding: @padding-md @padding-md @padding-xs;
- @cell-group-title-font-size: @font-size-md;
- @cell-group-title-line-height: 16px;
- @cell-group-inset-padding: 0 @padding-md;
- @cell-group-inset-border-radius: @border-radius-lg;
- @cell-group-inset-title-padding: @padding-md @padding-md @padding-xs @padding-xl;
- // Checkbox
- @checkbox-size: 20px;
- @checkbox-border-color: @gray-5;
- @checkbox-transition-duration: @animation-duration-fast;
- @checkbox-label-margin: @padding-xs;
- @checkbox-label-color: @text-color;
- @checkbox-checked-icon-color: @blue;
- @checkbox-disabled-icon-color: @gray-5;
- @checkbox-disabled-label-color: @gray-5;
- @checkbox-disabled-background-color: @border-color;
- // Circle
- @circle-size: 100px;
- @circle-color: @blue;
- @circle-layer-color: @white;
- @circle-text-color: @text-color;
- @circle-text-font-weight: @font-weight-bold;
- @circle-text-font-size: @font-size-md;
- @circle-text-line-height: @line-height-md;
- // Collapse
- @collapse-item-transition-duration: @animation-duration-base;
- @collapse-item-content-padding: @padding-sm @padding-md;
- @collapse-item-content-font-size: @font-size-md;
- @collapse-item-content-line-height: 1.5;
- @collapse-item-content-text-color: @gray-6;
- @collapse-item-content-background-color: @white;
- @collapse-item-title-disabled-color: @gray-5;
- // ContactCard
- @contact-card-padding: @padding-md;
- @contact-card-add-icon-size: 40px;
- @contact-card-add-icon-color: @blue;
- @contact-card-value-line-height: @line-height-md;
- // ContactEdit
- @contact-edit-padding: @padding-md;
- @contact-edit-fields-radius: @border-radius-md;
- @contact-edit-buttons-padding: @padding-xl 0;
- @contact-edit-button-margin-bottom: @padding-sm;
- @contact-edit-button-font-size: 16px;
- @contact-edit-field-label-width: 4.1em;
- // ContactList
- @contact-list-edit-icon-size: 16px;
- @contact-list-add-button-z-index: 999;
- @contact-list-item-padding: @padding-md;
- // CountDown
- @count-down-text-color: @text-color;
- @count-down-font-size: @font-size-md;
- @count-down-line-height: @line-height-md;
- // Coupon
- @coupon-margin: 0 @padding-sm @padding-sm;
- @coupon-content-height: 84px;
- @coupon-content-padding: 14px 0;
- @coupon-background-color: @white;
- @coupon-active-background-color: @active-color;
- @coupon-border-radius: @border-radius-lg;
- @coupon-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
- @coupon-head-width: 96px;
- @coupon-amount-color: @red;
- @coupon-amount-font-size: 30px;
- @coupon-currency-font-size: 40%;
- @coupon-name-font-size: @font-size-md;
- @coupon-disabled-text-color: @gray-6;
- @coupon-description-padding: @padding-xs @padding-md;
- @coupon-description-border-color: @border-color;
- // CouponCell
- @coupon-cell-selected-text-color: @text-color;
- // CouponList
- @coupon-list-background-color: @background-color;
- @coupon-list-field-padding: 5px 0 5px @padding-md;
- @coupon-list-exchange-button-height: 32px;
- @coupon-list-close-button-height: 40px;
- @coupon-list-empty-image-size: 200px;
- @coupon-list-empty-tip-color: @gray-6;
- @coupon-list-empty-tip-font-size: @font-size-md;
- @coupon-list-empty-tip-line-height: @line-height-md;
- // Dialog
- @dialog-width: 320px;
- @dialog-small-screen-width: 90%;
- @dialog-font-size: @font-size-lg;
- @dialog-transition: @animation-duration-base;
- @dialog-border-radius: 16px;
- @dialog-background-color: @white;
- @dialog-header-font-weight: @font-weight-bold;
- @dialog-header-line-height: 24px;
- @dialog-header-padding-top: 26px;
- @dialog-header-isolated-padding: @padding-lg 0;
- @dialog-message-padding: @padding-lg;
- @dialog-message-font-size: @font-size-md;
- @dialog-message-line-height: @line-height-md;
- @dialog-message-max-height: 60vh;
- @dialog-has-title-message-text-color: @gray-7;
- @dialog-has-title-message-padding-top: @padding-xs;
- @dialog-button-height: 48px;
- @dialog-round-button-height: 36px;
- @dialog-confirm-button-text-color: @red;
- // Divider
- @divider-margin: @padding-md 0;
- @divider-text-color: @gray-6;
- @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: 48px;
- @dropdown-menu-background-color: @white;
- @dropdown-menu-box-shadow: 0 2px 12px fade(@gray-7, 12);
- @dropdown-menu-title-font-size: 15px;
- @dropdown-menu-title-text-color: @text-color;
- @dropdown-menu-title-active-text-color: @red;
- @dropdown-menu-title-disabled-text-color: @gray-6;
- @dropdown-menu-title-padding: 0 @padding-xs;
- @dropdown-menu-title-line-height: @line-height-lg;
- @dropdown-menu-option-active-color: @red;
- @dropdown-menu-content-max-height: 80%;
- @dropdown-item-z-index: 10;
- // Empty
- @empty-padding: @padding-xl 0;
- @empty-image-size: 160px;
- @empty-description-margin-top: @padding-md;
- @empty-description-padding: 0 60px;
- @empty-description-color: @gray-6;
- @empty-description-font-size: @font-size-md;
- @empty-description-line-height: @line-height-md;
- @empty-bottom-margin-top: 24px;
- // Field
- @field-label-width: 6.2em;
- @field-label-color: @gray-7;
- @field-label-margin-right: @padding-sm;
- @field-input-text-color: @text-color;
- @field-input-error-text-color: @red;
- @field-input-disabled-text-color: @gray-5;
- @field-placeholder-text-color: @gray-5;
- @field-icon-size: 16px;
- @field-clear-icon-size: 16px;
- @field-clear-icon-color: @gray-5;
- @field-right-icon-color: @gray-6;
- @field-error-message-color: @red;
- @field-error-message-font-size: 12px;
- @field-text-area-min-height: 60px;
- @field-word-limit-color: @gray-7;
- @field-word-limit-font-size: @font-size-sm;
- @field-word-limit-line-height: 16px;
- @field-disabled-text-color: @gray-5;
- // 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: 28px;
- @grid-item-text-color: @gray-7;
- @grid-item-text-font-size: @font-size-sm;
- // GoodsAction
- @goods-action-background-color: @white;
- @goods-action-height: 50px;
- @goods-action-icon-width: 48px;
- @goods-action-icon-height: 100%;
- @goods-action-icon-color: @text-color;
- @goods-action-icon-size: 18px;
- @goods-action-icon-font-size: @font-size-xs;
- @goods-action-icon-active-color: @active-color;
- @goods-action-icon-text-color: @gray-7;
- @goods-action-button-height: 40px;
- @goods-action-button-warning-color: @gradient-orange;
- @goods-action-button-danger-color: @gradient-red;
- // IndexAnchor
- @index-anchor-z-index: 1;
- @index-anchor-padding: 0 @padding-md;
- @index-anchor-text-color: @text-color;
- @index-anchor-font-weight: @font-weight-bold;
- @index-anchor-font-size: @font-size-md;
- @index-anchor-line-height: 32px;
- @index-anchor-background-color: transparent;
- @index-anchor-sticky-text-color: @red;
- @index-anchor-sticky-background-color: @white;
- // IndexBar
- @index-bar-sidebar-z-index: 2;
- @index-bar-index-font-size: @font-size-xs;
- @index-bar-index-line-height: @line-height-xs;
- @index-bar-index-active-color: @red;
- // Info
- @info-size: 16px;
- @info-color: @white;
- @info-padding: 0 3px;
- @info-font-size: @font-size-sm;
- @info-font-weight: @font-weight-bold;
- @info-border-width: @border-width-base;
- @info-background-color: @red;
- @info-dot-color: @red;
- @info-dot-size: 8px;
- @info-font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
- // Image
- @image-placeholder-text-color: @gray-6;
- @image-placeholder-font-size: @font-size-md;
- @image-placeholder-background-color: @background-color;
- @image-loading-icon-size: 32px;
- @image-loading-icon-color: @gray-4;
- @image-error-icon-size: 32px;
- @image-error-icon-color: @gray-4;
- // ImagePreview
- @image-preview-index-text-color: @white;
- @image-preview-index-font-size: @font-size-md;
- @image-preview-index-line-height: @line-height-md;
- @image-preview-index-text-shadow: 0 1px 1px @gray-8;
- @image-preview-overlay-background-color: rgba(0, 0, 0, 0.9);
- @image-preview-close-icon-size: 22px;
- @image-preview-close-icon-color: @gray-5;
- @image-preview-close-icon-active-color: @gray-6;
- @image-preview-close-icon-margin: @padding-md;
- @image-preview-close-icon-z-index: 1;
- // List
- @list-text-color: @gray-6;
- @list-text-font-size: @font-size-md;
- @list-text-line-height: 50px;
- // Loading
- @loading-text-color: @gray-6;
- @loading-text-font-size: @font-size-md;
- @loading-spinner-color: @gray-5;
- @loading-spinner-size: 30px;
- @loading-spinner-animation-duration: 0.8s;
- // NavBar
- @nav-bar-height: 46px;
- @nav-bar-background-color: @white;
- @nav-bar-arrow-size: 16px;
- @nav-bar-icon-color: @blue;
- @nav-bar-text-color: @blue;
- @nav-bar-title-font-size: @font-size-lg;
- @nav-bar-title-text-color: @text-color;
- @nav-bar-z-index: 1;
- // NoticeBar
- @notice-bar-height: 40px;
- @notice-bar-padding: 0 @padding-md;
- @notice-bar-wrapable-padding: @padding-xs @padding-md;
- @notice-bar-text-color: @orange-dark;
- @notice-bar-font-size: @font-size-md;
- @notice-bar-line-height: 24px;
- @notice-bar-background-color: @orange-light;
- @notice-bar-icon-size: 16px;
- @notice-bar-icon-min-width: 24px;
- // Notify
- @notify-text-color: @white;
- @notify-padding: @padding-xs @padding-md;
- @notify-font-size: @font-size-md;
- @notify-line-height: @line-height-md;
- @notify-primary-background-color: @blue;
- @notify-success-background-color: @green;
- @notify-danger-background-color: @red;
- @notify-warning-background-color: @orange;
- // NumberKeyboard
- @number-keyboard-background-color: @gray-2;
- @number-keyboard-key-height: 48px;
- @number-keyboard-key-font-size: 28px;
- @number-keyboard-key-active-color: @gray-3;
- @number-keyboard-delete-font-size: @font-size-lg;
- @number-keyboard-title-color: @gray-7;
- @number-keyboard-title-height: 34px;
- @number-keyboard-title-font-size: @font-size-lg;
- @number-keyboard-close-padding: 0 @padding-md;
- @number-keyboard-close-color: @text-link-color;
- @number-keyboard-close-font-size: @font-size-md;
- @number-keyboard-button-text-color: @white;
- @number-keyboard-button-background-color: @blue;
- @number-keyboard-cursor-color: @text-color;
- @number-keyboard-cursor-width: 1px;
- @number-keyboard-cursor-height: 40%;
- @number-keyboard-cursor-animation-duration: 1s;
- @number-keyboard-z-index: 100;
- // Overlay
- @overlay-z-index: 1;
- @overlay-background-color: rgba(0, 0, 0, 0.7);
- // Pagination
- @pagination-height: 40px;
- @pagination-font-size: @font-size-md;
- @pagination-item-width: 36px;
- @pagination-item-default-color: @blue;
- @pagination-item-disabled-color: @gray-7;
- @pagination-item-disabled-background-color: @background-color;
- @pagination-background-color: @white;
- @pagination-desc-color: @gray-7;
- @pagination-disabled-opacity: @disabled-opacity;
- // Panel
- @panel-background-color: @white;
- @panel-header-value-color: @red;
- @panel-footer-padding: @padding-xs @padding-md;
- // PasswordInput
- @password-input-height: 50px;
- @password-input-margin: 0 @padding-md;
- @password-input-font-size: 20px;
- @password-input-border-radius: 6px;
- @password-input-background-color: @white;
- @password-input-info-color: @gray-6;
- @password-input-info-font-size: @font-size-md;
- @password-input-error-info-color: @red;
- @password-input-dot-size: 10px;
- @password-input-dot-color: @black;
- // Picker
- @picker-background-color: @white;
- @picker-toolbar-height: 44px;
- @picker-title-font-size: @font-size-lg;
- @picker-title-line-height: @line-height-md;
- @picker-action-padding: 0 @padding-md;
- @picker-action-font-size: @font-size-md;
- @picker-confirm-action-color: @text-link-color;
- @picker-cancel-action-color: @gray-6;
- @picker-option-font-size: @font-size-lg;
- @picker-option-text-color: @black;
- @picker-option-disabled-opacity: 0.3;
- @picker-loading-icon-color: @blue;
- @picker-loading-mask-color: rgba(255, 255, 255, 0.9);
- // Popover
- @popover-arrow-size: 6px;
- @popover-border-radius: @border-radius-lg;
- @popover-action-width: 128px;
- @popover-action-height: 44px;
- @popover-action-font-size: @font-size-md;
- @popover-action-line-height: @line-height-md;
- @popover-action-icon-size: 20px;
- @popover-light-text-color: @text-color;
- @popover-light-background-color: @white;
- @popover-light-action-disabled-text-color: @gray-5;
- @popover-dark-text-color: @white;
- @popover-dark-background-color: #4a4a4a;
- @popover-dark-action-disabled-text-color: @gray-6;
- // Popup
- @popup-background-color: @white;
- @popup-transition: transform @animation-duration-base;
- @popup-round-border-radius: 16px;
- @popup-close-icon-size: 22px;
- @popup-close-icon-color: @gray-5;
- @popup-close-icon-active-color: @gray-6;
- @popup-close-icon-margin: 16px;
- @popup-close-icon-z-index: 1;
- // Progress
- @progress-height: 4px;
- @progress-color: @blue;
- @progress-background-color: @gray-3;
- @progress-pivot-padding: 0 5px;
- @progress-pivot-text-color: @white;
- @progress-pivot-font-size: @font-size-xs;
- @progress-pivot-line-height: 1.6;
- @progress-pivot-background-color: @blue;
- // PullRefresh
- @pull-refresh-head-height: 50px;
- @pull-refresh-head-font-size: @font-size-md;
- @pull-refresh-head-text-color: @gray-6;
- // Radio
- @radio-size: 20px;
- @radio-border-color: @gray-5;
- @radio-transition-duration: @animation-duration-fast;
- @radio-label-margin: @padding-xs;
- @radio-label-color: @text-color;
- @radio-checked-icon-color: @blue;
- @radio-disabled-icon-color: @gray-5;
- @radio-disabled-label-color: @gray-5;
- @radio-disabled-background-color: @border-color;
- // Rate
- @rate-icon-size: 20px;
- @rate-icon-gutter: @padding-base;
- @rate-icon-void-color: @gray-5;
- @rate-icon-full-color: @red;
- @rate-icon-disabled-color: @gray-5;
- // ShareSheet
- @share-sheet-header-padding: @padding-sm @padding-md @padding-base;
- @share-sheet-title-color: @text-color;
- @share-sheet-title-font-size: @font-size-md;
- @share-sheet-title-line-height: @line-height-md;
- @share-sheet-description-color: @gray-6;
- @share-sheet-description-font-size: @font-size-sm;
- @share-sheet-description-line-height: 16px;
- @share-sheet-icon-size: 48px;
- @share-sheet-option-name-color: @gray-7;
- @share-sheet-option-name-font-size: @font-size-sm;
- @share-sheet-option-description-color: @gray-5;
- @share-sheet-option-description-font-size: @font-size-sm;
- @share-sheet-cancel-button-font-size: @font-size-lg;
- @share-sheet-cancel-button-height: 48px;
- @share-sheet-cancel-button-background: @white;
- // Search
- @search-padding: 10px @padding-sm;
- @search-background-color: @white;
- @search-content-background-color: @gray-1;
- @search-input-height: 34px;
- @search-label-padding: 0 5px;
- @search-label-color: @text-color;
- @search-label-font-size: @font-size-md;
- @search-left-icon-color: @gray-6;
- @search-action-padding: 0 @padding-xs;
- @search-action-text-color: @text-color;
- @search-action-font-size: @font-size-md;
- // Sidebar
- @sidebar-width: 80px;
- @sidebar-font-size: @font-size-md;
- @sidebar-line-height: @line-height-md;
- @sidebar-text-color: @text-color;
- @sidebar-disabled-text-color: @gray-5;
- @sidebar-padding: 20px @padding-sm;
- @sidebar-active-color: @active-color;
- @sidebar-background-color: @background-color;
- @sidebar-selected-font-weight: @font-weight-bold;
- @sidebar-selected-text-color: @text-color;
- @sidebar-selected-border-width: 4px;
- @sidebar-selected-border-height: 16px;
- @sidebar-selected-border-color: @red;
- @sidebar-selected-background-color: @white;
- // Skeleton
- @skeleton-row-height: 16px;
- @skeleton-row-background-color: @active-color;
- @skeleton-row-margin-top: @padding-sm;
- @skeleton-title-width: 40%;
- @skeleton-avatar-size: 32px;
- @skeleton-avatar-background-color: @active-color;
- @skeleton-animation-duration: 1.2s;
- // Slider
- @slider-active-background-color: @blue;
- @slider-inactive-background-color: @gray-3;
- @slider-disabled-opacity: @disabled-opacity;
- @slider-bar-height: 2px;
- @slider-button-width: 24px;
- @slider-button-height: 24px;
- @slider-button-border-radius: 50%;
- @slider-button-background-color: @white;
- @slider-button-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
- // Step
- @step-text-color: @gray-6;
- @step-active-color: @green;
- @step-process-text-color: @text-color;
- @step-font-size: @font-size-md;
- @step-line-color: @border-color;
- @step-finish-line-color: @green;
- @step-finish-text-color: @text-color;
- @step-icon-size: 12px;
- @step-circle-size: 5px;
- @step-circle-color: @gray-6;
- @step-horizontal-title-font-size: @font-size-sm;
- // Steps
- @steps-background-color: @white;
- // Sticky
- @sticky-z-index: 99;
- // Stepper
- @stepper-active-color: #e8e8e8;
- @stepper-background-color: @active-color;
- @stepper-button-icon-color: @text-color;
- @stepper-button-disabled-color: @background-color;
- @stepper-button-disabled-icon-color: @gray-5;
- @stepper-button-round-theme-color: @red;
- @stepper-input-width: 32px;
- @stepper-input-height: 28px;
- @stepper-input-font-size: @font-size-md;
- @stepper-input-line-height: normal;
- @stepper-input-text-color: @text-color;
- @stepper-input-disabled-text-color: @gray-5;
- @stepper-input-disabled-background-color: @active-color;
- @stepper-border-radius: @border-radius-md;
- // 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: @font-size-md;
- @submit-bar-currency-font-size: @font-size-md;
- @submit-bar-text-color: @text-color;
- @submit-bar-text-font-size: @font-size-md;
- @submit-bar-tip-padding: @padding-xs @padding-sm;
- @submit-bar-tip-font-size: @font-size-sm;
- @submit-bar-tip-line-height: 1.5;
- @submit-bar-tip-color: #f56723;
- @submit-bar-tip-background-color: #fff7cc;
- @submit-bar-tip-icon-size: 12px;
- @submit-bar-button-height: 40px;
- @submit-bar-padding: 0 @padding-md;
- @submit-bar-price-integer-font-size: 20px;
- @submit-bar-price-font-family: @price-integer-font-family;
- // Swipe
- @swipe-indicator-size: 6px;
- @swipe-indicator-margin: @padding-sm;
- @swipe-indicator-active-opacity: 1;
- @swipe-indicator-inactive-opacity: 0.3;
- @swipe-indicator-active-background-color: @blue;
- @swipe-indicator-inactive-background-color: @border-color;
- // Switch
- @switch-size: 30px;
- @switch-width: 2em;
- @switch-height: 1em;
- @switch-node-size: 1em;
- @switch-node-background-color: @white;
- @switch-node-box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.05),
- 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
- @switch-background-color: @white;
- @switch-on-background-color: @blue;
- @switch-transition-duration: @animation-duration-base;
- @switch-disabled-opacity: @disabled-opacity;
- @switch-border: @border-width-base solid rgba(0, 0, 0, 0.1);
- // SwitchCell
- @switch-cell-padding-top: @cell-vertical-padding - 1px;
- @switch-cell-padding-bottom: @cell-vertical-padding - 1px;
- @switch-cell-large-padding-top: @cell-large-vertical-padding - 1px;
- @switch-cell-large-padding-bottom: @cell-large-vertical-padding - 1px;
- // Tabbar
- @tabbar-height: 50px;
- @tabbar-z-index: 1;
- @tabbar-background-color: @white;
- // TabbarItem
- @tabbar-item-font-size: @font-size-sm;
- @tabbar-item-text-color: @gray-7;
- @tabbar-item-active-color: @blue;
- @tabbar-item-active-background-color: @tabbar-background-color;
- @tabbar-item-line-height: 1;
- @tabbar-item-icon-size: 22px;
- @tabbar-item-margin-bottom: 4px;
- // Tab
- @tab-text-color: @gray-7;
- @tab-active-text-color: @text-color;
- @tab-disabled-text-color: @gray-5;
- @tab-font-size: @font-size-md;
- @tab-line-height: @line-height-md;
- // Tabs
- @tabs-default-color: @red;
- @tabs-line-height: 44px;
- @tabs-card-height: 30px;
- @tabs-nav-background-color: @white;
- @tabs-bottom-bar-width: 40px;
- @tabs-bottom-bar-height: 3px;
- @tabs-bottom-bar-color: @tabs-default-color;
- // Tag
- @tag-padding: 0 @padding-base;
- @tag-text-color: @white;
- @tag-font-size: @font-size-sm;
- @tag-border-radius: 2px;
- @tag-line-height: 16px;
- @tag-medium-padding: 2px 6px;
- @tag-large-padding: @padding-base @padding-xs;
- @tag-large-border-radius: @border-radius-md;
- @tag-large-font-size: @font-size-md;
- @tag-round-border-radius: @border-radius-max;
- @tag-danger-color: @red;
- @tag-primary-color: @blue;
- @tag-success-color: @green;
- @tag-warning-color: @orange;
- @tag-default-color: @gray-6;
- @tag-plain-background-color: @white;
- // Toast
- @toast-max-width: 70%;
- @toast-font-size: @font-size-md;
- @toast-text-color: @white;
- @toast-loading-icon-color: @white;
- @toast-line-height: @line-height-md;
- @toast-border-radius: @border-radius-lg;
- @toast-background-color: fade(@black, 70%);
- @toast-icon-size: 36px;
- @toast-text-min-width: 96px;
- @toast-text-padding: @padding-xs @padding-sm;
- @toast-default-padding: @padding-md;
- @toast-default-width: 88px;
- @toast-default-min-height: 88px;
- @toast-position-top-distance: 20%;
- @toast-position-bottom-distance: 20%;
- // TreeSelect
- @tree-select-font-size: @font-size-md;
- @tree-select-nav-background-color: @background-color;
- @tree-select-content-background-color: @white;
- @tree-select-nav-item-padding: 14px @padding-sm;
- @tree-select-item-height: 48px;
- @tree-select-item-active-color: @red;
- @tree-select-item-disabled-color: @gray-5;
- @tree-select-item-selected-size: 16px;
- // Uploader
- @uploader-size: 80px;
- @uploader-icon-size: 24px;
- @uploader-icon-color: @gray-4;
- @uploader-text-color: @gray-6;
- @uploader-text-font-size: @font-size-sm;
- @uploader-upload-background-color: @gray-1;
- @uploader-upload-active-color: @active-color;
- @uploader-delete-color: @white;
- @uploader-delete-icon-size: 14px;
- @uploader-delete-background-color: rgba(0, 0, 0, 0.7);
- @uploader-file-background-color: @background-color;
- @uploader-file-icon-size: 20px;
- @uploader-file-icon-color: @gray-7;
- @uploader-file-name-padding: 0 @padding-base;
- @uploader-file-name-margin-top: @padding-xs;
- @uploader-file-name-font-size: @font-size-sm;
- @uploader-file-name-text-color: @gray-7;
- @uploader-mask-background-color: fade(@gray-8, 88%);
- @uploader-mask-icon-size: 22px;
- @uploader-mask-message-font-size: @font-size-sm;
- @uploader-mask-message-line-height: @line-height-xs;
- @uploader-loading-icon-size: 22px;
- @uploader-loading-icon-color: @white;
- @uploader-disabled-opacity: @disabled-opacity;
- // Sku
- @sku-item-background-color: @background-color;
- @sku-icon-gray-color: @gray-4;
- @sku-upload-mask-color: rgba(50, 50, 51, 0.8);
|