纯css3实现网页深色模式:-webkit-filter: invert(100%)
Google Chrome plugin: Dark Mode for Chrome
You can test on: https://237005722.github.io/darkMode/
Just copy-paste this code to end of body tag:
<button onclick="switchDarkStyle('light')">浅色模式</button>
<button onclick="switchDarkStyle('dark')">深色模式</button>
<script src="./darkMode.js"></script>