26 lines
874 B
HTML
26 lines
874 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="icon" href="/favicon.ico">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script>
|
|
(function () {
|
|
var themes = ['emerald', 'indigo', 'orange', 'blue']
|
|
var theme = localStorage.getItem('rill-theme')
|
|
var mode = localStorage.getItem('rill-mode') || 'system'
|
|
document.documentElement.dataset.theme = themes.indexOf(theme) >= 0 ? theme : 'emerald'
|
|
if (mode !== 'light' && mode !== 'dark') {
|
|
mode = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
|
|
}
|
|
document.documentElement.dataset.mode = mode
|
|
})()
|
|
</script>
|
|
<title>Rill</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|