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

This commit is contained in:
neverland 2019-01-10 17:45:58 +08:00 committed by GitHub
parent f5306b88c1
commit 91d735a41a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 13 additions and 13 deletions

View File

@ -30,7 +30,7 @@
<van-checkbox
value="{{ checkbox2 }}"
data-key="checkbox2"
checked-color="#4b0"
checked-color="#07c160"
custom-class="demo-checkbox"
bind:change="onChange"
>

View File

@ -28,7 +28,7 @@
name="1"
value="1"
custom-class="demo-radio"
checked-color="#4b0"
checked-color="#07c160"
>
单选框
</van-radio>

View File

@ -23,7 +23,7 @@
value="{{ value3 }}"
size="{{ 25 }}"
count="{{ 6 }}"
color="#2ba"
color="#07c160"
void-color="#ceefe8"
bind:change="onChange"
/>

View File

@ -32,7 +32,7 @@
<demo-block title="自定义颜色" padding>
<van-switch
checked="{{ checked }}"
active-color="#4b0"
active-color="#07c160"
inactive-color="#f44"
bind:change="onChange"
/>

View File

@ -42,7 +42,7 @@
active="{{ active }}"
custom-class="tabbar"
safe-area-inset-bottom="{{ false }}"
active-color="#4b0"
active-color="#07c160"
bind:change="onChange"
>
<van-tabbar-item icon="home-o">标签</van-tabbar-item>

View File

@ -36,7 +36,7 @@
```html
<van-checkbox
value="{{ checked }}"
checked-color="#4b0"
checked-color="#07c160"
bind:change="onChange"
>
复选框

View File

@ -1,3 +1,3 @@
export const RED = '#f44';
export const BLUE = '#1989fa';
export const GREEN = '#4b0';
export const GREEN = '#07c160';

View File

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

View File

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

View File

@ -48,7 +48,7 @@ Page({
value="{{ value }}"
size="{{ 25 }}"
count="{{ 6 }}"
color="#2ba"
color="#07c160"
void-color="#ceefe8"
bind:change="onChange"
/>

View File

@ -63,7 +63,7 @@ Page({
|-----------|-----------|-----------|-------------|
| active | 当前步骤 | `Number` | 0 |
| direction | 显示方向,可选值为 `horizontal` `vertical` | `String` | `horizontal` |
| active-color | 激活状态颜色 | `String` | `#4b0` |
| active-color | 激活状态颜色 | `String` | `#07c160` |
### 外部样式类

View File

@ -53,7 +53,7 @@ Page({
```html
<van-switch
checked="{{ checked }}"
active-color="#4b0"
active-color="#07c160"
inactive-color="#f44"
/>
```

View File

@ -79,7 +79,7 @@ Page({
```html
<van-tabbar
active="{{ active }}"
active-color="#4b0"
active-color="#07c160"
bind:change="onChange"
>
<van-tabbar-item icon="home-o">标签</van-tabbar-item>