* [bugfix] Checkbox border render error in weixin browser * [bugfix] TreeSelect dependency path error * [bugfix] Swipe should clear autoplay timer when destroyed * [bugfix] Optimize component dependency analyze when build style entry * merge * update yarn.lock * update README.md * update README.md * update README.md * update README.md * update README.md * [Doc] add more badges in README.md * update README.md * [bugfix] Address & Contact list style * fix: contact test cases * [bugfix] popup style missing when build style entry * [bugfix] Search: onSearch event arguments missing * [Doc] add demo pages * update zan-doc@0.3.7 * fix: build entry error * [Doc] add goods demo * [bugfix] button primary background color
36 lines
967 B
CSS
36 lines
967 B
CSS
/* color variables */
|
|
$black: #000;
|
|
$white: #fff;
|
|
$red: #f44;
|
|
$blue: #38f;
|
|
$orange: #f60;
|
|
$green: #06bf04;
|
|
$gray: #c9c9c9;
|
|
$gray-light: #e5e5e5;
|
|
$gray-darker: #666;
|
|
$gray-dark: #999;
|
|
|
|
/* default colors */
|
|
$text-color: #333;
|
|
$border-color: #ccc;
|
|
$active-color: #e8e8e8;
|
|
$background-color: #f8f8f8;
|
|
|
|
/* button */
|
|
$button-primary-color: $white;
|
|
$button-primary-background-color: #4b0;
|
|
$button-primary-border-color: #0a0;
|
|
$button-default-color: $text-color;
|
|
$button-default-background-color: $white;
|
|
$button-default-border-color: $border-color;
|
|
$button-danger-color: $white;
|
|
$button-danger-background-color: $red;
|
|
$button-danger-border-color: #e33;
|
|
$button-disabled-color: $gray-dark;
|
|
$button-disabled-background-color: $gray-light;
|
|
$button-disabled-border-color: #cacaca;
|
|
$bottom-action-button-default-color: $white;
|
|
$bottom-action-button-default-background-color: #f85;
|
|
$bottom-action-button-primary-color: $white;
|
|
$bottom-action-button-primary-background-color: $red;
|