allow user to select theme they want to use
This commit is contained in:
17
tailwind.config.js
Normal file
17
tailwind.config.js
Normal 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,
|
||||
],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user