@charset "UTF-8";
/* Sophi的代码花园 - 自定义样式 */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap");
:root {
  /* 主色调 - 稍微柔和 */
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --accent: #0d9488;
  --accent-light: #14b8a6;
  /* 文字颜色 - 不用纯黑 */
  --text-primary: #374151;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  /* 背景 - 米白色，不用纯白 */
  --bg-primary: #fdfcfa;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #111827;
  /* 边框 - 更柔和 */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  /* 阴影 - 更柔和 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  /* 代码背景 */
  --code-bg: #f8fafc;
  --code-border: #e2e8f0;
  --code-text: #334155;
  /* 字体 */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "PingFang SC", monospace;
}

/* 夜间模式 */
[data-theme=dark] {
  /* 主色调 - 保持品牌色但调整亮度 */
  --primary: #818cf8; /* 更亮的靛蓝 */
  --primary-dark: #6366f1;
  --accent: #fbbf24; /* 保持琥珀 */
  --accent-light: #fcd34d;
  /* 文字颜色 - 反转 */
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-light: #9ca3af;
  /* 背景 - 深色 */
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-dark: #020617;
  /* 边框 */
  --border: #334155;
  --border-light: #1e293b;
  /* 阴影 - 更柔和 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  /* 代码背景 - GitHub Dark */
  --code-bg: #161b22;
  --code-border: #30363d;
  --code-text: #c9d1d9;
}

/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-primary);
}

/* 引入 Merriweather 衬线字体 */
/* 链接样式 - 传统下划线 */
a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* 导航链接无下划线 */
.site-nav a,
.post-title a,
.hero-title a,
.series-card,
.signal-card a,
.tag-link,
.view-all-link {
  text-decoration: none;
}

/* 文章正文使用衬线字体 */
.post-content {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* 文章正文链接 */
.post-content a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* 代码保持等宽字体 */
.post-content code,
.post-content pre {
  font-family: var(--font-mono);
}

/* 标题保持无衬线 */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-family: var(--font-sans);
}

/* 按钮 - 扁平化 */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--text-secondary);
}

/* 导航 */
.site-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.site-header .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.site-title:hover {
  color: var(--primary);
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  color: var(--text-secondary);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--primary);
}

/* 首页 - Hero Section */
.hero-sophi {
  text-align: center;
  padding: 5rem 2rem 3rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-avatar {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.sub-tagline {
  font-size: 1rem;
  color: var(--accent);
  font-style: italic;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* 专题系列 */
.featured-series {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-series h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.series-card {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.series-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.series-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.series-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.series-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.series-topics {
  list-style: none;
  margin-bottom: 1.5rem;
}

.series-topics li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.series-topics li::before {
  content: "→ ";
  color: var(--accent);
}

.series-topics .more {
  color: var(--text-light);
  font-style: italic;
}

.series-link {
  font-weight: 600;
  color: var(--primary);
}

/* 最新文章 */
.latest-posts {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.latest-posts h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.posts-list {
  max-width: 800px;
  margin: 0 auto;
}

.post-preview {
  background: var(--bg-primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.post-preview:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.post-preview .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.post-preview .tag {
  background: var(--bg-secondary);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.post-preview h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-preview h3 a {
  color: var(--text-primary);
}

.post-preview h3 a:hover {
  color: var(--primary);
}

.post-excerpt {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.view-all {
  text-align: center;
  margin-top: 2rem;
}

/* Philosophy Quote */
.philosophy {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.philosophy-quote {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-quote p {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.philosophy-quote cite {
  font-size: 1rem;
  opacity: 0.8;
}

/* Connect CTA */
.connect-cta {
  padding: 4rem 2rem;
  text-align: center;
}

.connect-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.connect-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* 文章页面 - 收窄宽度 */
.post {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.post-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--font-sans);
  color: var(--text-primary);
}

.post-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.post-content {
  font-size: 1rem;
  line-height: 1.5;
}

/* 文章正文样式 - 高优先级覆盖 */
.post-content h2,
.post-content h3,
.post .post-content h2,
.post .post-content h3 {
  font-family: var(--font-sans) !important;
}

.post-content h2,
.post .post-content h2 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.5rem !important;
  color: var(--primary) !important;
  padding-bottom: 0.25rem !important;
  border-bottom: 2px solid var(--primary) !important;
  line-height: 1.5 !important;
}

.post-content h3,
.post .post-content h3 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin-top: 1.25rem !important;
  margin-bottom: 0.5rem !important;
  color: var(--accent) !important;
  border-left: 3px solid var(--accent) !important;
  padding-left: 0.5rem !important;
  line-height: 1.5 !important;
}

.post-content p {
  margin-bottom: 0.625rem;
  line-height: 1.5;
  font-size: 1rem;
}

.post-content blockquote {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  font-style: normal;
  color: var(--text-primary);
}

.post-content blockquote p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.post-content blockquote p:last-child {
  margin-bottom: 0;
}

/* 特别处理 TL;DR 块 */
.post-content blockquote:first-of-type {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border-left: 4px solid var(--accent);
}

.post-content ul,
.post-content ol {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.post-content li {
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

/* 关于页面 */
.about-page,
.archive,
.tags-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* 归档页面 */
.archive h1,
.tags-page h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.archive-year {
  margin-bottom: 1.5rem;
}

.archive-year h2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--border);
}

.archive .post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive .post-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.archive .post-date {
  color: var(--text-light);
  font-size: 0.8125rem;
  min-width: 4rem;
}

.archive .post-list a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
}

.archive .post-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* 标签页面 */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
}

.tag-link {
  background: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.tag-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.tag-section {
  margin-bottom: 2rem;
}

.tag-section h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 4px solid var(--accent);
}

.about-header {
  text-align: center;
  padding: 3rem 0;
}

.avatar-container {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  font-size: 6rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.wave {
  animation: wave 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}
.tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.about-intro,
.about-skills,
.about-style,
.about-projects,
.about-connect {
  margin-bottom: 3rem;
}

.about-page h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.skill-category {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.skill-category h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.skill-category ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-category li {
  background: var(--bg-primary);
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.style-quote blockquote {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--accent);
}

.style-quote p {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.project-card {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.project-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.project-card p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-link {
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.social-link:hover {
  background: var(--primary);
  color: white;
}

.closing {
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--text-secondary);
}

/* 页脚 */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.site-footer a:hover {
  color: var(--primary);
}

/* 响应式 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 1.75rem;
  }
  .series-grid {
    grid-template-columns: 1fr;
  }
  .site-nav {
    display: none;
  }
  .post-title {
    font-size: 1.75rem;
  }
}
/* 表格样式 - 现代化 */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  background: transparent;
  border: none;
  box-shadow: none;
}

.post-content table thead {
  background: transparent;
  border-bottom: 2px solid var(--border);
}

.post-content table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--border);
}

.post-content table th:first-child {
  border-radius: 0.5rem 0 0 0;
}

.post-content table th:last-child {
  border-radius: 0 0.5rem 0 0;
}

.post-content table td {
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
}

.post-content table tbody tr:hover {
  background: var(--bg-secondary);
}

.post-content table tbody tr:last-child td {
  border-bottom: none;
}

/* 表格中的代码 */
.post-content table code {
  font-size: 0.8125em;
  padding: 0.125rem 0.375rem;
  background: var(--code-bg);
  border-radius: 0.25rem;
}

/* 代码样式 - GitHub风格 */
.post-content code {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.875em;
  color: var(--code-text);
  border: none;
}

.post-content pre {
  background: #f7f7f7;
  border: none;
  color: var(--code-text);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
}

/* 代码块复制按钮 */
.post-content pre .copy-code-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
}

.post-content pre:hover .copy-code-btn {
  opacity: 1;
}

.post-content pre .copy-code-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.post-content pre .copy-code-btn.copied {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
}

.post-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  border: none;
  font-size: inherit;
}

/* 代码语言标识 */
.post-content pre::before {
  content: attr(data-language);
  position: absolute;
  top: 0;
  left: 1rem;
  padding: 0.25rem 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 0.25rem 0.25rem;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
}

/* 代码语法高亮 - 亮色模式 */
:root .post-content .c,
:root .post-content .cm,
:root .post-content .cp,
:root .post-content .c1,
:root .post-content .cs {
  color: #6e7781;
  font-style: italic;
}

:root .post-content .k,
:root .post-content .kc,
:root .post-content .kd,
:root .post-content .kn,
:root .post-content .kp,
:root .post-content .kr,
:root .post-content .kt {
  color: #cf222e;
}

:root .post-content .s,
:root .post-content .sb,
:root .post-content .sc,
:root .post-content .sd,
:root .post-content .s2,
:root .post-content .se,
:root .post-content .sh,
:root .post-content .si,
:root .post-content .sx,
:root .post-content .s1 {
  color: #0a3069;
}

:root .post-content .nt,
:root .post-content .nf,
:root .post-content .nc {
  color: #8250df;
}

:root .post-content .na,
:root .post-content .nv {
  color: #0550ae;
}

:root .post-content .m,
:root .post-content .mf,
:root .post-content .mh,
:root .post-content .mi,
:root .post-content .mo {
  color: #0550ae;
}

:root .post-content .o,
:root .post-content .ow {
  color: #cf222e;
}

/* 代码语法高亮 - 深色模式 */
[data-theme=dark] .post-content .c,
[data-theme=dark] .post-content .cm,
[data-theme=dark] .post-content .cp,
[data-theme=dark] .post-content .c1,
[data-theme=dark] .post-content .cs {
  color: #8b949e;
  font-style: italic;
}

[data-theme=dark] .post-content .k,
[data-theme=dark] .post-content .kc,
[data-theme=dark] .post-content .kd,
[data-theme=dark] .post-content .kn,
[data-theme=dark] .post-content .kp,
[data-theme=dark] .post-content .kr,
[data-theme=dark] .post-content .kt {
  color: #ff7b72;
}

[data-theme=dark] .post-content .s,
[data-theme=dark] .post-content .sb,
[data-theme=dark] .post-content .sc,
[data-theme=dark] .post-content .sd,
[data-theme=dark] .post-content .s2,
[data-theme=dark] .post-content .se,
[data-theme=dark] .post-content .sh,
[data-theme=dark] .post-content .si,
[data-theme=dark] .post-content .sx,
[data-theme=dark] .post-content .s1 {
  color: #a5d6ff;
}

[data-theme=dark] .post-content .nt,
[data-theme=dark] .post-content .nf,
[data-theme=dark] .post-content .nc {
  color: #d2a8ff;
}

[data-theme=dark] .post-content .na,
[data-theme=dark] .post-content .nv {
  color: #79c0ff;
}

[data-theme=dark] .post-content .m,
[data-theme=dark] .post-content .mf,
[data-theme=dark] .post-content .mh,
[data-theme=dark] .post-content .mi,
[data-theme=dark] .post-content .mo {
  color: #79c0ff;
}

[data-theme=dark] .post-content .o,
[data-theme=dark] .post-content .ow {
  color: #ff7b72;
}

/* End of styles */

/*# sourceMappingURL=style.css.map */