
/* 自定义链接颜色 */
.md-content a {
  color: #c022ff;
}

/* 设置h1标题的颜色为红色 */
.md-content h1 {
    color: #ff22a7;
}

/* 设置h2标题的颜色为蓝色 */
.md-content h2 {
    color: #ff8522;
}

/* 设置h3标题的颜色为绿色 */
.md-content h3 {
    color: #ff2256;
}

/* 设置h4标题的颜色为橙色 */
.md-content h4 {
    color: #223fff;
}

/* 设置h5标题的颜色为紫色 */
.md-content h5 {
    color: #00ff9d;
}

/* 设置h6标题的颜色为黄色 */
.md-content h6 {
    color: #f5bc00;
};

