Skip to content
CONTENTS

暗黑模式

所有的组件都是通过 css 变量赋予的颜色,只需要在根添加 dark 类名即可

如何启用?

首先你可以创建一个开关来控制 暗黑模式 的 class 类名

如果您只需要暗色模式,只需在 html 上添加一个名为 dark 的类

html
<html class="dark">
  <head></head>
  <body></body>
</html>

Released under the MIT License.