/* 修改后的高亮.js样式，以匹配黑色背景风格并使用Consolas字体 */
pre code.hljs,
code.hljs,
.hljs,
.hljs-comment, .hljs-quote,
.hljs-variable, .hljs-template-variable, .hljs-attribute, .hljs-tag, .hljs-name, .hljs-regexp, .hljs-link, .hljs-selector-id, .hljs-selector-class,
.hljs-number, .hljs-meta, .hljs-built_in, .hljs-builtin-name, .hljs-literal, .hljs-type, .hljs-params,
.hljs-string, .hljs-symbol, .hljs-bullet,
.hljs-title, .hljs-section,
.hljs-keyword, .hljs-selector-tag, .hljs-deletion, .hljs-addition,
.hljs-emphasis,
.hljs-strong {
    font-family: Consolas, "Courier New", "Lucida Console", monospace;
    font-size: 14px;
    /* 其余样式保持不变 */
    
}

pre code.hljs { 
    display: block; 
    overflow-x: auto; 
    padding: 1em; 
    background: #1e1e1e; /* 黑色背景 */
    color: #dcdcdc; /* 浅灰色文字 */
    border-radius: 8px; /* 添加圆角 */
}

code.hljs { 
    padding: 3px 5px; 
}

.hljs-comment, .hljs-quote { 
    color: #6a9955; /* 暗绿色注释 */
}

.hljs-variable, .hljs-template-variable, .hljs-attribute, .hljs-tag, .hljs-name, .hljs-regexp, .hljs-link, .hljs-selector-id, .hljs-selector-class { 
    color: #d7ba7d; /* 柔和的棕黄色 */
}

.hljs-number, .hljs-meta, .hljs-built_in, .hljs-builtin-name, .hljs-literal, .hljs-type, .hljs-params { 
    color: #b5cea8; /* 柔和的绿色 */
}

.hljs-string, .hljs-symbol, .hljs-bullet { 
    color: #ce9178; /* 柔和的红色 */
}

.hljs-title, .hljs-section { 
    color: #569cd6; /* 柔和的蓝色 */
}

.hljs-keyword, .hljs-selector-tag, .hljs-deletion, .hljs-addition { 
    color: #c586c0; /* 柔和的紫色 */
    font-weight: bold; /* 加粗关键字 */
}

.hljs-emphasis { 
    font-style: italic; 
}

.hljs-strong { 
    font-weight: bold; 
}
