Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support dark mode #67

Open
jiacai2050 opened this issue Sep 23, 2023 · 1 comment
Open

Support dark mode #67

jiacai2050 opened this issue Sep 23, 2023 · 1 comment

Comments

@jiacai2050
Copy link

No description provided.

@yihui
Copy link
Owner

yihui commented Sep 23, 2023

自己动手,丰衣足食。极简风格的暗黑模式并不太难,我常用的偷懒办法就是把背景色设置为白色之后把整个页面的颜色全盘反转:

@media (prefers-color-scheme: dark) {
  body {
    background-color: white;
  }
  html, img, video, iframe {
    filter: invert(1);
  }
}

当然,肯定还有些细节需要调整。给你个参考示例:https://github.com/yihui/hugo-paged/blob/main/static/css/style.css

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants