mirror of
https://github.com/JustusPlays78/ChangelogApp.git
synced 2025-04-29 05:00:30 +00:00
15 lines
269 B
JavaScript
15 lines
269 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,js}"],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
backgroundColor: ['dark'],
|
|
textColor: ['dark'],
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |