forked from BetaHuhn/drkmd.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 723 Bytes
/
index.html
File metadata and controls
37 lines (31 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Darkmode example</title>
<style>
/* Styles for light theme */
.theme-light {
background: #fff;
color: #000;
}
/* Styles for dark theme */
.theme-dark {
background: #000;
color: #fff;
}
</style>
</head>
<body>
<h1>Darkmode example</h1>
</body>
<script src="https://cdn.jsdelivr.net/npm/drkmd-js/dist/drkmd-js.min.js" data-drkmd-attach ></script>
<!-- or -->
<!--
<script>
import Darkmode from 'drkmd-js'
new Darkmode().attach()
</script>
-->
</html>