/* docs/assets/morandi.css */

/* 设置全局背景色和字体颜色，以莫兰迪色调为基调 */
:root {
  /* 低饱和度柔和色 */
  --md-default-bg-color: #F7F4F1;       /* 柔和米色背景 */
  --md-surface: #FFFFFF;                /* 内容区域白色背景 */
  --md-primary-fg-color: #8C7B75;        /* 主文本颜色，淡雅灰褐色 */
  --md-accent-fg-color: #B2A9A0;         /* 强调色，柔和粉灰色 */

  /* Material 主题变量覆盖 */
  --md-theme-primary: #8C7B75;
  --md-theme-accent: #B2A9A0;
  --md-theme-text: #5A5048;
  --md-theme-link: #A89F91;
}

/* 调整标题和链接样式 */
.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
  color: var(--md-theme-primary);
}

.md-typeset a {
  color: var(--md-theme-link);
}

/* 调整导航栏背景及文本颜色 */
.md-header,
.md-nav__title,
.md-nav__link {
  background-color: var(--md-default-bg-color);
  color: var(--md-theme-text);
}
