mszep / pandoc_resume

The Markdown Resume
http://mszep.github.io/pandoc_resume/
MIT License
1.62k stars 756 forks source link

dark mode toggle in html #62

Open nitrocode opened 4 years ago

nitrocode commented 4 years ago

Looks like it would be easy enough to add

https://darkmodejs.learn.uno/

Albirew commented 1 year ago

Since there's no picture, this very simple CSS should work:

  @media (prefers-color-scheme: dark){
    html {
      filter: hue-rotate(180deg) invert(1);
      background-color:#333;
    }
  }