diff --git a/src/style/var.less b/src/style/var.less
index 510a142c7..f47e84c5f 100644
--- a/src/style/var.less
+++ b/src/style/var.less
@@ -1,7 +1,7 @@
// Basic Colors
@black: #000;
@white: #fff;
-@red: #f44;
+@red: #ee0a24;
@blue: #1989fa;
@orange: #ff976a;
@orange-dark: #ed6a0c;
diff --git a/src/switch/README.md b/src/switch/README.md
index 8c859ba47..5edf49990 100644
--- a/src/switch/README.md
+++ b/src/switch/README.md
@@ -60,7 +60,7 @@ export default {
```
diff --git a/src/switch/README.zh-CN.md b/src/switch/README.zh-CN.md
index 37197e850..8d440599a 100644
--- a/src/switch/README.zh-CN.md
+++ b/src/switch/README.zh-CN.md
@@ -60,7 +60,7 @@ export default {
```
diff --git a/src/switch/demo/index.vue b/src/switch/demo/index.vue
index 7a6d9eb86..0f115ace9 100644
--- a/src/switch/demo/index.vue
+++ b/src/switch/demo/index.vue
@@ -29,7 +29,7 @@
diff --git a/src/tab/README.md b/src/tab/README.md
index 8f89c5631..cb0c8df0c 100644
--- a/src/tab/README.md
+++ b/src/tab/README.md
@@ -182,7 +182,7 @@ In swipeable mode, you can switch tabs with swipe gestrue in the content
| background | Background color | *string* | `white` | - |
| line-width | Width of tab line | *string \| number* | Width of active tab | - |
| line-height | Height of tab line | *string \| number* | `3px` | - |
-| color | Tab color | *string* | `#f44` | - |
+| color | Tab color | *string* | `#ee0a24` | - |
| title-active-color | Title active color | *string* | - | - |
| title-inactive-color | Title inactive color | *string* | - | - |
| swipe-threshold | Set swipe tabs threshold | *number* | `4` | - | - |
diff --git a/src/tab/README.zh-CN.md b/src/tab/README.zh-CN.md
index bdfcd764e..08ce4d3e3 100644
--- a/src/tab/README.zh-CN.md
+++ b/src/tab/README.zh-CN.md
@@ -186,7 +186,7 @@ export default {
| background | 标签栏背景色 | *string* | `white` | - |
| line-width | 底部条宽度,默认单位 px | *string \| number* | `auto` | - |
| line-height | 底部条高度,默认单位 px | *string \| number* | `3px` | - |
-| color | 标签主题色 | *string* | `#f44` | - |
+| color | 标签主题色 | *string* | `#ee0a24` | - |
| title-active-color | 标题选中态颜色 | *string* | - | - |
| title-inactive-color | 标题默认态颜色 | *string* | - | - |
| swipe-threshold | 滚动阈值,标签数量超过多少个可滚动 | *number* | `4` | - |
diff --git a/src/tab/test/__snapshots__/index.spec.js.snap b/src/tab/test/__snapshots__/index.spec.js.snap
index 98400c0c7..6e0cf5069 100644
--- a/src/tab/test/__snapshots__/index.spec.js.snap
+++ b/src/tab/test/__snapshots__/index.spec.js.snap
@@ -16,11 +16,11 @@ exports[`change tabs data 1`] = `
@@ -105,11 +105,11 @@ exports[`lazy render 1`] = `
@@ -131,11 +131,11 @@ exports[`lazy render 2`] = `
@@ -175,10 +175,10 @@ exports[`render nav-left & nav-right slot 1`] = `
-
Nav Left
title1
+
Nav Left
title1
title2
title3
-
Nav Right
+
Nav Right
diff --git a/src/tab/test/index.spec.js b/src/tab/test/index.spec.js
index 313ec8494..659740884 100644
--- a/src/tab/test/index.spec.js
+++ b/src/tab/test/index.spec.js
@@ -25,7 +25,7 @@ function createWrapper(options = {}) {
`,
data() {
return {
- color: '#f44',
+ color: '#ee0a24',
type: 'line',
sticky: true,
lineWidth: 2,
diff --git a/src/utils/constant.ts b/src/utils/constant.ts
index f70afc57f..43bf62eb9 100644
--- a/src/utils/constant.ts
+++ b/src/utils/constant.ts
@@ -1,5 +1,5 @@
// color
-export const RED = '#f44';
+export const RED = '#ee0a24';
export const BLUE = '#1989fa';
export const GREEN = '#07c160';
export const WHITE = '#fff';