[improvement] Color: update base green to wechat green (#2479)

This commit is contained in:
neverland 2019-01-09 22:22:52 +08:00 committed by GitHub
parent d74147dad0
commit d62ccc06fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
31 changed files with 55 additions and 55 deletions

View File

@ -17,7 +17,7 @@ There are some basic variables below, all available variables could be found in
@orange: #ff976a;
@orange-dark: #ed6a0c;
@orange-light: #fffbe8;
@green: #4b0;
@green: #07c160;
@gray: #c9c9c9;
@gray-light: #e5e5e5;
@gray-darker: #7d7e80;

View File

@ -21,7 +21,7 @@ Vant 使用了 [Less](http://lesscss.org/) 对样式进行预处理,并内置
@orange: #ff976a;
@orange-dark: #ed6a0c;
@orange-light: #fffbe8;
@green: #4b0;
@green: #07c160;
@gray: #c9c9c9;
@gray-light: #e5e5e5;
@gray-darker: #7d7e80;

View File

@ -22,7 +22,7 @@
<demo-block :title="$t('customColor')">
<van-checkbox
v-model="checkbox2"
checked-color="#4b0"
checked-color="#07c160"
>
{{ $t('customColor') }}
</van-checkbox>

View File

@ -34,7 +34,7 @@ export default {
#### Custom Color
```html
<van-checkbox v-model="checked" checked-color="#4b0">Checkbox</van-checkbox>
<van-checkbox v-model="checked" checked-color="#07c160">Checkbox</van-checkbox>
```
#### Custom Icon

View File

@ -27,7 +27,7 @@ exports[`renders demo correctly 1`] = `
</div>
<div>
<div class="van-checkbox">
<div class="van-checkbox__icon van-checkbox__icon--round van-checkbox__icon--checked"><i class="van-icon van-icon-success" style="color:undefined;font-size:undefined;border-color:#4b0;background-color:#4b0;">
<div class="van-checkbox__icon van-checkbox__icon--round van-checkbox__icon--checked"><i class="van-icon van-icon-success" style="color:undefined;font-size:undefined;border-color:#07c160;background-color:#07c160;">
<!---->
<!----></i></div> <span class="van-checkbox__label">
自定义颜色

View File

@ -36,7 +36,7 @@ export default {
#### 自定义颜色
```html
<van-checkbox v-model="checked" checked-color="#4b0">复选框</van-checkbox>
<van-checkbox v-model="checked" checked-color="#07c160">复选框</van-checkbox>
```
#### 自定义图标

View File

@ -10,7 +10,7 @@
/>
<van-circle
v-model="currentRate2"
color="#13ce66"
color="#07c160"
fill="#fff"
:rate="rate"
size="120px"

View File

@ -40,7 +40,7 @@ export default {
```html
<van-circle
v-model="currentRate"
color="#13ce66"
color="#07c160"
fill="#fff"
size="120px"
layer-color="#ebedf0"

View File

@ -11,7 +11,7 @@ exports[`renders demo correctly 1`] = `
</div>
<div class="van-circle" style="width:120px;height:120px;"><svg viewBox="0 0 1060 1060">
<path d="M 530 530 m -500, 0 a 500, 500 0 1, 1 1000, 0 a 500, 500 0 1, 1 -1000, 0" class="van-circle__hover" style="fill:#fff;stroke:#ebedf0;stroke-width:60px;"></path>
<path d="M 530 530 m -500, 0 a 500, 500 0 1, 1 1000, 0 a 500, 500 0 1, 1 -1000, 0" class="van-circle__layer" style="stroke:#13ce66;stroke-dashoffset:3140px;stroke-width:61px;"></path>
<path d="M 530 530 m -500, 0 a 500, 500 0 1, 1 1000, 0 a 500, 500 0 1, 1 -1000, 0" class="van-circle__layer" style="stroke:#07c160;stroke-dashoffset:3140px;stroke-width:61px;"></path>
</svg>
<div class="van-circle__text">0%</div>
</div>

View File

@ -41,7 +41,7 @@ export default {
```html
<van-circle
v-model="currentRate"
color="#13ce66"
color="#07c160"
fill="#fff"
size="120px"
layer-color="#ebedf0"

View File

@ -25,7 +25,7 @@
<van-radio
name="1"
value="1"
checked-color="#4b0"
checked-color="#07c160"
class="demo-radio-group"
>
{{ $t('radio') }}

View File

@ -43,7 +43,7 @@ export default {
#### Custom Color
```html
<van-radio checked-color="#4b0">Radio</van-radio>
<van-radio checked-color="#07c160">Radio</van-radio>
```
#### Inside a Cell

View File

@ -15,7 +15,7 @@ exports[`renders demo correctly 1`] = `
</div>
</div>
<div>
<div class="demo-radio-group van-radio"><span class="van-radio__input"><input type="radio" value="1" checked="checked" class="van-radio__control"> <i class="van-icon van-icon-checked" style="color:#4b0;font-size:undefined;"> <!----> <!----></i></span> <span class="van-radio__label">
<div class="demo-radio-group van-radio"><span class="van-radio__input"><input type="radio" value="1" checked="checked" class="van-radio__control"> <i class="van-icon van-icon-checked" style="color:#07c160;font-size:undefined;"> <!----> <!----></i></span> <span class="van-radio__label">
单选框
</span></div>
</div>

View File

@ -45,7 +45,7 @@ export default {
#### 自定义颜色
```html
<van-radio checked-color="#4b0">复选框</van-radio>
<van-radio checked-color="#07c160">复选框</van-radio>
```
#### 与 Cell 组件一起使用

View File

@ -17,7 +17,7 @@
v-model="value3"
:size="25"
:count="6"
color="#2ba"
color="#07c160"
void-color="#ceefe8"
/>
</demo-block>

View File

@ -42,7 +42,7 @@ export default {
v-model="value"
:size="25"
:count="6"
color="#2ba"
color="#07c160"
void-color="#ceefe8"
/>
```

View File

@ -29,13 +29,13 @@ exports[`renders demo correctly 1`] = `
<!----></i></div>
</div>
<div>
<div class="van-rate"><i data-index="0" class="van-icon van-icon-star van-rate__item" style="color:#2ba;font-size:25px;">
<div class="van-rate"><i data-index="0" class="van-icon van-icon-star van-rate__item" style="color:#07c160;font-size:25px;">
<!---->
<!----></i><i data-index="1" class="van-icon van-icon-star van-rate__item" style="color:#2ba;font-size:25px;">
<!----></i><i data-index="1" class="van-icon van-icon-star van-rate__item" style="color:#07c160;font-size:25px;">
<!---->
<!----></i><i data-index="2" class="van-icon van-icon-star van-rate__item" style="color:#2ba;font-size:25px;">
<!----></i><i data-index="2" class="van-icon van-icon-star van-rate__item" style="color:#07c160;font-size:25px;">
<!---->
<!----></i><i data-index="3" class="van-icon van-icon-star van-rate__item" style="color:#2ba;font-size:25px;">
<!----></i><i data-index="3" class="van-icon van-icon-star van-rate__item" style="color:#07c160;font-size:25px;">
<!---->
<!----></i><i data-index="4" class="van-icon van-icon-star-o van-rate__item" style="color:#ceefe8;font-size:25px;">
<!---->

View File

@ -42,7 +42,7 @@ export default {
v-model="value"
:size="25"
:count="6"
color="#2ba"
color="#07c160"
void-color="#ceefe8"
/>
```

View File

@ -59,7 +59,7 @@ export default {
| title | Title | `String` | - |
| description | Description | `String` | - |
| direction | Can be set to `horizontal` `vertical` | `String` | `horizontal` |
| active-color | Active step color | `String` | `#4b0` |
| active-color | Active step color | `String` | `#07c160` |
### Steps Slot

View File

@ -12,8 +12,8 @@ exports[`renders demo correctly 1`] = `
<div class="van-step__line"></div>
</div>
<div class="van-hairline van-step van-step--horizontal van-step--process">
<div class="van-step__title" style="color:#4b0;">商家接单</div>
<div class="van-step__circle-container"><i class="van-icon van-icon-checked" style="color:#4b0;font-size:undefined;">
<div class="van-step__title" style="color:#07c160;">商家接单</div>
<div class="van-step__circle-container"><i class="van-icon van-icon-checked" style="color:#07c160;font-size:undefined;">
<!---->
<!----></i></div>
<div class="van-step__line"></div>

View File

@ -60,7 +60,7 @@ export default {
| icon | 描述栏图标 | `String` | - | - |
| icon-class | 图标额外类名 | `String` | - | - |
| direction | 显示方向,可选值为 `vertical` | `String` | `horizontal` | - |
| active-color | 激活状态颜色 | `String` | `#4b0` | - |
| active-color | 激活状态颜色 | `String` | `#07c160` | - |
### Steps Slot

View File

@ -6,7 +6,7 @@
@orange: #ff976a;
@orange-dark: #ed6a0c;
@orange-light: #fffbe8;
@green: #4b0;
@green: #07c160;
@gray: #c8c9cc;
@gray-light: #e5e5e5;
@gray-darker: #7d7e80;

View File

@ -28,7 +28,7 @@
<demo-block :title="$t('customColor')">
<van-switch
v-model="checked3"
active-color="#4b0"
active-color="#07c160"
inactive-color="#f44"
/>
</demo-block>

View File

@ -57,7 +57,7 @@ export default {
```html
<van-switch
v-model="checked"
active-color="#4b0"
active-color="#07c160"
inactive-color="#f44"
/>
```

View File

@ -31,7 +31,7 @@ exports[`renders demo correctly 1`] = `
</div>
</div>
<div>
<div class="van-switch van-switch--on" style="font-size:30px;background-color:#4b0;">
<div class="van-switch van-switch--on" style="font-size:30px;background-color:#07c160;">
<div class="van-switch__node">
<!---->
</div>

View File

@ -57,7 +57,7 @@ export default {
```html
<van-switch
v-model="checked"
active-color="#4b0"
active-color="#07c160"
inactive-color="#f44"
/>
```

View File

@ -42,7 +42,7 @@
<demo-block :title="$t('customColor')">
<van-tabbar
v-model="active3"
active-color="#4b0"
active-color="#07c160"
>
<van-tabbar-item icon="home-o">{{ $t('tab') }}</van-tabbar-item>
<van-tabbar-item icon="search">{{ $t('tab') }}</van-tabbar-item>

View File

@ -69,7 +69,7 @@ export default {
```html
<van-tabbar
v-model="active"
active-color="#4b0"
active-color="#07c160"
>
<van-tabbar-item icon="home-o">标签</van-tabbar-item>
<van-tabbar-item icon="search">标签</van-tabbar-item>

View File

@ -2,26 +2,26 @@
exports[`renders demo correctly 1`] = `
<div>
<div><span class="van-tag" style="background-color:#969799;">标签</span> <span class="van-tag" style="background-color:#f44;">标签</span> <span class="van-tag" style="background-color:#1989fa;">标签</span> <span class="van-tag" style="background-color:#4b0;">标签</span></div>
<div><span class="van-tag" style="background-color:#969799;">标签</span> <span class="van-tag" style="background-color:#f44;">标签</span> <span class="van-tag" style="background-color:#1989fa;">标签</span> <span class="van-tag" style="background-color:#07c160;">标签</span></div>
<div><span class="van-tag van-tag--plain van-hairline--surround" style="color:#969799;">标签</span> <span class="van-tag van-tag--plain van-tag--round van-hairline--surround" style="color:#f44;">
标签
</span> <span class="van-tag van-tag--plain van-tag--round van-hairline--surround" style="color:#1989fa;">
标签
</span> <span class="van-tag van-tag--plain van-hairline--surround" style="color:#4b0;">
</span> <span class="van-tag van-tag--plain van-hairline--surround" style="color:#07c160;">
标签
</span></div>
<div><span class="van-tag van-tag--round" style="background-color:#969799;">标签</span> <span class="van-tag van-tag--round" style="background-color:#f44;">
标签
</span> <span class="van-tag van-tag--round" style="background-color:#1989fa;">
标签
</span> <span class="van-tag van-tag--round" style="background-color:#4b0;">
</span> <span class="van-tag van-tag--round" style="background-color:#07c160;">
标签
</span></div>
<div><span class="van-tag van-tag--mark" style="background-color:#969799;">标签</span> <span class="van-tag van-tag--mark" style="background-color:#f44;">
标签
</span> <span class="van-tag van-tag--mark" style="background-color:#1989fa;">
标签
</span> <span class="van-tag van-tag--mark" style="background-color:#4b0;">
</span> <span class="van-tag van-tag--mark" style="background-color:#07c160;">
标签
</span></div>
<div><span class="van-tag" style="background-color:#f2826a;">标签</span> <span class="van-tag van-tag--plain van-hairline--surround" style="color:#f2826a;">

View File

@ -1,5 +1,5 @@
export const RED = '#f44';
export const BLUE = '#1989fa';
export const GREEN = '#4b0';
export const GREEN = '#07c160';
export const WHITE = '#fff';
export const GRAY_DARK = '#969799';

View File

@ -124,7 +124,7 @@
"@babel/helper-member-expression-to-functions@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd107c160a0df7ff00f009e7d7a436945f47c7a16f"
dependencies:
"@babel/types" "^7.0.0"
@ -705,7 +705,7 @@
"@vant/eslint-config@^1.0.8":
version "1.0.8"
resolved "https://registry.yarnpkg.com/@vant/eslint-config/-/eslint-config-1.0.8.tgz#213358538f6335c06cf8f944b01e308f2aec2aef"
resolved "https://registry.yarnpkg.com/@vant/eslint-config/-/eslint-config-1.0.8.tgz#213358538f6335c06cf8f9407c1601e308f2aec2aef"
dependencies:
babel-eslint "^10.0.1"
eslint-config-airbnb-base "^13.1.0"
@ -1272,7 +1272,7 @@ array-unique@^0.3.2:
arrify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a07c160d"
asap@~2.0.3:
version "2.0.6"
@ -2190,7 +2190,7 @@ config-chain@^1.1.12:
configstore@^3.0.0:
version "3.1.2"
resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f"
resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd334107c16001fe81a543f8f"
dependencies:
dot-prop "^4.1.0"
graceful-fs "^4.1.2"
@ -2660,7 +2660,7 @@ detect-libc@^1.0.2:
detect-newline@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be07c1600e87b5f13da680759f2c5bfd3e2"
detective-amd@^3.0.0:
version "3.0.0"
@ -2978,7 +2978,7 @@ es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14:
es6-iterator@~2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a907c160854403b2d0a0fbfa98f3b7"
dependencies:
d "1"
es5-ext "^0.10.35"
@ -3599,7 +3599,7 @@ for-own@^0.1.4:
for-own@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc07c1604dbfe70cf836494c53cb44b"
dependencies:
for-in "^1.0.1"
@ -4548,7 +4548,7 @@ is-descriptor@^0.1.0:
is-descriptor@^1.0.0, is-descriptor@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a666007c1604f8c81524ba365c5f14d86ec"
dependencies:
is-accessor-descriptor "^1.0.0"
is-data-descriptor "^1.0.0"
@ -4765,7 +4765,7 @@ is-url@^1.2.4:
is-utf8@^0.2.0:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#07c160da1442104d1b336340e80797e865cf39f7d72"
is-whitespace-character@^1.0.0:
version "1.0.2"
@ -5891,7 +5891,7 @@ makeerror@1.0.x:
map-age-cleaner@^0.1.1:
version "0.1.3"
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe4707c160f45078e6e1b4b92a"
dependencies:
p-defer "^1.0.0"
@ -6594,7 +6594,7 @@ object.entries@^1.0.4:
object.getownpropertydescriptors@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f107c16051caa16"
dependencies:
define-properties "^1.1.2"
es-abstract "^1.5.1"
@ -7485,7 +7485,7 @@ read-pkg@^4.0.1:
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
version "2.3.6"
resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf907c160c79ae1b0aaf"
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.3"
@ -7568,7 +7568,7 @@ regenerator-runtime@^0.12.0:
regenerator-transform@^0.13.3:
version "0.13.3"
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb"
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce207c1606e0636496b2c856b57bcbb"
dependencies:
private "^0.1.6"
@ -7686,7 +7686,7 @@ remark-stringify@^5.0.0:
remark@^9.0.0:
version "9.0.0"
resolved "https://registry.yarnpkg.com/remark/-/remark-9.0.0.tgz#c5cfa8ec535c73a67c4b0f12bfdbd3a67d8b2f60"
resolved "https://registry.yarnpkg.com/remark/-/remark-9.0.0.tgz#c5cfa8ec535c73a67c07c160f12bfdbd3a67d8b2f60"
dependencies:
remark-parse "^5.0.0"
remark-stringify "^5.0.0"
@ -7977,7 +7977,7 @@ semver-compare@^1.0.0:
semver-diff@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e07c160cf1a68fd726ec6d645d6d36"
dependencies:
semver "^5.0.3"
@ -8188,7 +8188,7 @@ sparkles@^1.0.0:
spdx-correct@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f1507c16074e218c87c003cd31df4"
dependencies:
spdx-expression-parse "^3.0.0"
spdx-license-ids "^3.0.0"
@ -9176,7 +9176,7 @@ vue-hot-reload-api@^2.3.0:
vue-jest@^3.0.1:
version "3.0.2"
resolved "https://registry.yarnpkg.com/vue-jest/-/vue-jest-3.0.2.tgz#c64bf5da9abd0d3ee16071217037696d14b0689c"
resolved "https://registry.yarnpkg.com/vue-jest/-/vue-jest-3.0.2.tgz#c64bf5da9abd0d3ee16071217037696d107c160689c"
dependencies:
babel-plugin-transform-es2015-modules-commonjs "^6.26.0"
chalk "^2.1.0"
@ -9552,7 +9552,7 @@ yallist@^2.1.2:
yallist@^3.0.0, yallist@^3.0.2:
version "3.0.3"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b07c16049e314be545e3ce802236d6cd22cd91c3de9"
yargs-parser@^10.0.0:
version "10.1.0"