feat: add <red> tag style.

This commit is contained in:
jaywcjlove 2022-11-09 14:47:22 +08:00
parent 04e6e16a97
commit b2aabe4291
2 changed files with 4 additions and 0 deletions

View File

@ -209,6 +209,7 @@ const school = <div>学校</div>;
:- | -
:- | -
`<yel>` | <yel>黄色</yel>
`<red>` | <yel>红色</yel>
`<pur>` | <pur>紫色</pur>
`<code>`<code>\`\`</code> | <code>绿</code>`色`
`<del>``~~删除~~` | <del>~~红色~~</del>

View File

@ -165,6 +165,9 @@ menu {
yel {
color: var(--color-prettylights-syntax-variable);
}
red {
color: var(--color-danger-fg);
}
pur {
color: var(--color-prettylights-syntax-entity);
}