将以下样式注入到全局head标签

<style>
/* 标签基础样式 */
#post .tag_share .post-meta__tags {
    align-items: center;
    white-space: nowrap;
    height: 40px;
    padding: 0px 0.6rem;
    width: fit-content;
    font-size: 0.85em;
    transition: all 0.2s ease-in-out 0s;
    color: #fff !important; /* 默认文字颜色为白色 */
}

/* 定义一组颜色 */
#post .tag_share .post-meta__tags:nth-child(6n + 1) { background-color: #ff7f50; } /* Coral */
#post .tag_share .post-meta__tags:nth-child(6n + 2) { background-color: #6495ed; } /* Cornflower Blue */
#post .tag_share .post-meta__tags:nth-child(6n + 3) { background-color: #32cd32; } /* Lime Green */
#post .tag_share .post-meta__tags:nth-child(6n + 4) { background-color: #ff69b4; } /* Hot Pink */
#post .tag_share .post-meta__tags:nth-child(6n + 5) { background-color: #8a2be2; } /* Blue Violet */
#post .tag_share .post-meta__tags:nth-child(6n + 6) { background-color: #ff4500; } /* Orange Red */

/* 鼠标悬停效果 */
#post .tag_share .post-meta__tags:hover {
    background: var(--heo-lighttext);
    box-shadow: var(--heo-shadow-main);
    color: var(--heo-white);
}

</style>

PixPin_2025-01-10_19-06-18.png