ls-deno/twind.config.ts

11 lines
236 B
TypeScript
Raw Normal View History

2022-09-27 14:41:17 -05:00
import { Options } from "$fresh/plugins/twind.ts";
2022-09-30 09:34:07 -05:00
import { apply } from "twind";
2022-09-27 14:41:17 -05:00
export default {
selfURL: import.meta.url,
2022-09-30 09:34:07 -05:00
preflight: {
2022-09-30 09:37:27 -05:00
body: apply("bg-white text-black dark:bg-gray-900 dark:text-white"),
2022-09-30 09:34:07 -05:00
},
2022-09-27 14:41:17 -05:00
} as Options;