:root[data-theme="light"] {
  --bg-color: #ffffff;
  --text-color: #000000;
}

:root[data-theme="dark"] {
  --bg-color: #0c1a2e;
  --text-color: #ffffff;
}

html,
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Noto Sans JP", sans-serif;
}

/* 追加 */
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a {
  color: var(--text-color) !important;
}
