diff --git a/docs/notes/theme/guide/组件/徽章.md b/docs/notes/theme/guide/组件/徽章.md
index 345c6032..9e27babd 100644
--- a/docs/notes/theme/guide/组件/徽章.md
+++ b/docs/notes/theme/guide/组件/徽章.md
@@ -31,7 +31,7 @@ permalink: /guide/components/badge/
- VuePress -
- VuePress -
- VuePress -
-- VuePress -
+- VuePress -
```
**输出:**
@@ -40,56 +40,56 @@ permalink: /guide/components/badge/
- VuePress -
- VuePress -
- VuePress -
-- VuePress -
+- VuePress -
使用自定义`type`,可以实现更丰富的表现。
**输入:**
-1. 在主题任意样式文件中,添加预定的样式:
+1. 在主题 [自定义样式文件](../自定义样式.md) 中,添加预定的样式:
-```css
-/* 浅色主题 */
-.vp-badge.important {
- color: #cccccc;
- background-color: #f40f40;
- border-color: transparent;
-}
+ ```css
+ /* 浅色主题 */
+ .vp-badge.important {
+ color: #8e5cd9;
+ background-color: rgba(159, 122, 234, 0.14);
+ border-color: transparent;
+ }
-/* 深色主题 */
-[data-theme="dark"] .vp-badge.important {
- color: #f40f40;
- background-color: #ffffff;
- border-color: transparent;
-}
+ /* 深色主题 */
+ [data-theme="dark"] .vp-badge.important {
+ color: #8e5cd9;
+ background-color: rgba(159, 122, 234, 0.16);
+ border-color: transparent;
+ }
-/**
- important 为自定义 type 类型
-*/
-```
+ /**
+ important 为自定义 type 类型
+ */
+ ```
2. 使用自定义`type`:
-```md :no-line-numbers
-- VuePress -
-```
+ ```md :no-line-numbers
+ VuePress -
+ ```
-**输出:**
+ **输出:**
-- VuePress -
+ VuePress -