mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Color: update base green to wechat green (#1202)
This commit is contained in:
parent
f5306b88c1
commit
91d735a41a
@ -30,7 +30,7 @@
|
|||||||
<van-checkbox
|
<van-checkbox
|
||||||
value="{{ checkbox2 }}"
|
value="{{ checkbox2 }}"
|
||||||
data-key="checkbox2"
|
data-key="checkbox2"
|
||||||
checked-color="#4b0"
|
checked-color="#07c160"
|
||||||
custom-class="demo-checkbox"
|
custom-class="demo-checkbox"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
>
|
>
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
name="1"
|
name="1"
|
||||||
value="1"
|
value="1"
|
||||||
custom-class="demo-radio"
|
custom-class="demo-radio"
|
||||||
checked-color="#4b0"
|
checked-color="#07c160"
|
||||||
>
|
>
|
||||||
单选框
|
单选框
|
||||||
</van-radio>
|
</van-radio>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
value="{{ value3 }}"
|
value="{{ value3 }}"
|
||||||
size="{{ 25 }}"
|
size="{{ 25 }}"
|
||||||
count="{{ 6 }}"
|
count="{{ 6 }}"
|
||||||
color="#2ba"
|
color="#07c160"
|
||||||
void-color="#ceefe8"
|
void-color="#ceefe8"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
/>
|
/>
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
<demo-block title="自定义颜色" padding>
|
<demo-block title="自定义颜色" padding>
|
||||||
<van-switch
|
<van-switch
|
||||||
checked="{{ checked }}"
|
checked="{{ checked }}"
|
||||||
active-color="#4b0"
|
active-color="#07c160"
|
||||||
inactive-color="#f44"
|
inactive-color="#f44"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
/>
|
/>
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
active="{{ active }}"
|
active="{{ active }}"
|
||||||
custom-class="tabbar"
|
custom-class="tabbar"
|
||||||
safe-area-inset-bottom="{{ false }}"
|
safe-area-inset-bottom="{{ false }}"
|
||||||
active-color="#4b0"
|
active-color="#07c160"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
>
|
>
|
||||||
<van-tabbar-item icon="home-o">标签</van-tabbar-item>
|
<van-tabbar-item icon="home-o">标签</van-tabbar-item>
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
```html
|
```html
|
||||||
<van-checkbox
|
<van-checkbox
|
||||||
value="{{ checked }}"
|
value="{{ checked }}"
|
||||||
checked-color="#4b0"
|
checked-color="#07c160"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
>
|
>
|
||||||
复选框
|
复选框
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
export const RED = '#f44';
|
export const RED = '#f44';
|
||||||
export const BLUE = '#1989fa';
|
export const BLUE = '#1989fa';
|
||||||
export const GREEN = '#4b0';
|
export const GREEN = '#07c160';
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
@orange: #ff976a;
|
@orange: #ff976a;
|
||||||
@orange-dark: #ed6a0c;
|
@orange-dark: #ed6a0c;
|
||||||
@orange-light: #fffbe8;
|
@orange-light: #fffbe8;
|
||||||
@green: #4b0;
|
@green: #07c160;
|
||||||
@gray: #c9c9c9;
|
@gray: #c9c9c9;
|
||||||
@gray-light: #e5e5e5;
|
@gray-light: #e5e5e5;
|
||||||
@gray-darker: #7d7e80;
|
@gray-darker: #7d7e80;
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
#### 自定义颜色
|
#### 自定义颜色
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<van-radio checked-color="#4b0">复选框</van-radio>
|
<van-radio checked-color="#07c160">复选框</van-radio>
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 与 Cell 组件一起使用
|
#### 与 Cell 组件一起使用
|
||||||
|
@ -48,7 +48,7 @@ Page({
|
|||||||
value="{{ value }}"
|
value="{{ value }}"
|
||||||
size="{{ 25 }}"
|
size="{{ 25 }}"
|
||||||
count="{{ 6 }}"
|
count="{{ 6 }}"
|
||||||
color="#2ba"
|
color="#07c160"
|
||||||
void-color="#ceefe8"
|
void-color="#ceefe8"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
/>
|
/>
|
||||||
|
@ -63,7 +63,7 @@ Page({
|
|||||||
|-----------|-----------|-----------|-------------|
|
|-----------|-----------|-----------|-------------|
|
||||||
| active | 当前步骤 | `Number` | 0 |
|
| active | 当前步骤 | `Number` | 0 |
|
||||||
| direction | 显示方向,可选值为 `horizontal` `vertical` | `String` | `horizontal` |
|
| direction | 显示方向,可选值为 `horizontal` `vertical` | `String` | `horizontal` |
|
||||||
| active-color | 激活状态颜色 | `String` | `#4b0` |
|
| active-color | 激活状态颜色 | `String` | `#07c160` |
|
||||||
|
|
||||||
### 外部样式类
|
### 外部样式类
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ Page({
|
|||||||
```html
|
```html
|
||||||
<van-switch
|
<van-switch
|
||||||
checked="{{ checked }}"
|
checked="{{ checked }}"
|
||||||
active-color="#4b0"
|
active-color="#07c160"
|
||||||
inactive-color="#f44"
|
inactive-color="#f44"
|
||||||
/>
|
/>
|
||||||
```
|
```
|
||||||
|
@ -79,7 +79,7 @@ Page({
|
|||||||
```html
|
```html
|
||||||
<van-tabbar
|
<van-tabbar
|
||||||
active="{{ active }}"
|
active="{{ active }}"
|
||||||
active-color="#4b0"
|
active-color="#07c160"
|
||||||
bind:change="onChange"
|
bind:change="onChange"
|
||||||
>
|
>
|
||||||
<van-tabbar-item icon="home-o">标签</van-tabbar-item>
|
<van-tabbar-item icon="home-o">标签</van-tabbar-item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user