Add dark mode

This commit is contained in:
joncrangle
2023-11-30 01:12:38 -05:00
parent 6749f76b0b
commit bc01028d2b
2 changed files with 8 additions and 8 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,9 +1,9 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
content: ["./handlers/**/*.html"], content: ["./handlers/**/*.html"],
theme: { darkMode: "class",
extend: {}, theme: {
}, extend: {},
plugins: [], },
} plugins: [],
};