/* 强制应用light模式，不管系统设置如何 */
@media (prefers-color-scheme: dark) {
  /* 全局背景色和字体色设置为浅色模式 */
  .markdown-body {
    background-color: white !important;
    color: black !important;

    /* 设置代码块的背景色和字体颜色 */
    pre,
    code {
      background-color: #f8f8f8 !important;
      color: #333 !important;
    }

    /* 设置链接颜色 */
    a {
      color: #0366d6 !important;
    }

    /* 表格样式 */
    table {
      background-color: white;
      color: black;
    }
  
    th,
    td {
      background-color: white;
      color: black;
      border: 1px solid #e1e4e8;
    }
  
    /* 表格边框颜色 */
    table tr {
      border-color: #e1e4e8;
    }
  
    /* 表头样式 */
    th {
      background-color: #f6f8fa;
      color: #24292e;
    }
  }

}
.markdown-body {
  ol, ul {
    list-style: auto !important;
  }
  h1, h2, h3 {
    border: none !important;
  }
}