🧪 Frontend Lab
交互式前端学习实验室

深色模式实现

css · intermediate · 25-30 min · Step 1/5

暗黑模式

方案:CSS 变量 + 媒体查询

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --card-bg: #f5f5f5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1a2e;
    --text: #e0e0e0;
    --card-bg: #2d2d44;
  }
}

body {
  background: var(--bg);
  color: var(--text);
}

手动切换

[data-theme="dark"] {
  --bg: #1a1a2e;
  --text: #e0e0e0;
}

document.documentElement.dataset.theme = 'dark';