* docs(README): Invert logo image in dark mode * docs(theme): Add light/dark mode support
48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>DMF Docs</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta
|
|
name="description"
|
|
content="The Darktide Mod Framework is an open-source, community-run framework of modules that provides enhanced modding capabilities and support."
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
|
|
/>
|
|
<link rel="stylesheet" media="(prefers-color-scheme: light)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
|
|
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
|
|
<style>
|
|
h1.app-name {
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
font-family: system-ui, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
const repo = "Darktide-Mod-Framework/Darktide-Mod-Framework";
|
|
window.$docsify = {
|
|
name: "Darktide Mod Framework",
|
|
repo,
|
|
basePath: `https://raw.githubusercontent.com/wiki/${repo}/`,
|
|
coverpage: false,
|
|
alias: {
|
|
"/.*/_sidebar.md": "/_sidebar.md",
|
|
},
|
|
loadSidebar: true,
|
|
auto2top: true,
|
|
search: "auto",
|
|
};
|
|
</script>
|
|
<!-- Docsify v4 -->
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-lua.min.js"></script>
|
|
</body>
|
|
</html>
|