<link rel="stylesheet" class="aplayer-secondary-style-marker" href="\assets\css\APlayer.min.css"><script src="\assets\js\APlayer.min.js" class="aplayer-secondary-script-marker"></script>/* 新添加的內容 */
/* ------------------------------------- */
/* 代码框背景色和字体颜色,与hljs一樣就行 */
/* 必须配置(把下面.hljs的color和background复制到这里来) */
+#article-container pre, 
+#article-container figure.highlight {
+  background: #f6f8fa;  
+  color: #d3af86
+}

/* 代码框工具栏（如果你关掉了copy、lang和shrink，可不用配置这个*/
+#article-container figure.highlight .highlight-tools {
+  color: #fff;
+  background: #321a0f
+}

/* 代码框行数（如果已经关掉line_number，可以不用配置这个) */
+#article-container figure.highlight .gutter pre {
+  background-color: #f6f8fa;
+  color: #fff
+}

/* 代码块figcaption配置（hexo自带标签https://hexo.io/zh-tw/docs/tag-plugins.html#Code-Block) */
/* 不需要可以不用配置这个 */
+#article-container figure.highlight figcaption,
+#article-container figure.highlight figcaption a {
+  color: #d3af86 !important
+}

/* 代碼框滾動條 (需要可配置，默認為主題主顔色）*/
/* 不需要可以不用配置這個 */
+#article-container figure.highlight table::-webkit-scrollbar-thumb {
+  background: #d3af86 !important
+}

/* ------------------------------------- */

/* Kimbie Comment */
.hljs-comment,
.hljs-quote {
  color: #4d790d;
}

/* Kimbie Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-meta {
  color: #dc3958;
}

/* Kimbie Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-deletion,
.hljs-link {
  color: #7f6f88;
}

/* Kimbie Yellow */
.hljs-title,
.hljs-section,
.hljs-attribute {
  color: #2c82cc;
}

/* Kimbie Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
  color: #889b4a;
}

/* Kimbie Purple */
.hljs-keyword,
.hljs-selector-tag,
.hljs-function {
  color: #b56604;
}

/* 更改的內容 把.hljs改為 #article-container figure.highlight .hljs *、
/* ------------------------------------- */
#article-container figure.highlight .hljs {
  display: block;
  overflow-x: auto;
  background: #f6f8fa;
  color: #7f6f88;
  padding: 0.5em;
}

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

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