allow user to select theme they want to use

This commit is contained in:
liamcottle
2024-12-16 12:17:11 +13:00
parent 61e4e3665a
commit 4d20f4e086
11 changed files with 1318 additions and 256 deletions

17
tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
import formsPlugin from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'selector',
content: [
"./src/frontend/index.html",
"./src/**/*.{vue,js,ts,jsx,tsx,html}",
],
theme: {
extend: {},
},
plugins: [
formsPlugin,
],
}