16 lines
270 B
JavaScript
16 lines
270 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
content: [
|
|
"./src/**/*.{html,ts}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
backgroundColor: ['dark'],
|
|
textColor: ['dark'],
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|