2022-06-22 00:30:11 +03:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2022-06-22 19:01:08 +03:00
|
|
|
darkMode: 'class',
|
2022-06-22 00:30:11 +03:00
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
|
|
extend: {}
|
2022-06-23 21:02:21 +03:00
|
|
|
},
|
|
|
|
plugins: [require('@tailwindcss/typography')]
|
2022-06-22 00:30:11 +03:00
|
|
|
};
|