1
2
3
4
5
6
7
8
9
10
11
import html, { Fragment, h } from "https://deno.land/x/htm@0.2.3/mod.ts";
import ColorScheme from "https://deno.land/x/htm@0.2.3/plugins/color-scheme.ts";
import UnoCSS from "https://deno.land/x/htm@0.2.3/plugins/unocss.ts";
// enable UnoCSS
html.use(UnoCSS());
// check the color scheme with system settings automatically
html.use(ColorScheme("auto"));
export { Fragment, h, html };