一、调整代码块

修改 themes/theme-hao/templates/assets/zhheo/zhheoblog.css

:root {
  /* 添加样式 */
  --heo-code-text: #0D6EFD;
}

[data-theme=light] {
  /* 添加样式 */
  --heo-blue-op: #0d6efd1a;
}

[data-theme=dark] {
  /* 添加样式 */
  --heo-blue-op: #334052fc;
}

code:not([class]) {
  /* 修改此项 */
  color: var(--heo-code-text);
  padding: 0.25rem 0.5rem;
  background: var(--heo-bule-op);
  line-height: 1.25rem;
  font-size: 15px;
  border-radius: 0.375rem;
  /* 删除此项 */
  margin: 0px 4px;
}