2023-12-19 09:17:02 +00:00
|
|
|
import withMT from '@material-tailwind/react/utils/withMT';
|
|
|
|
|
2023-12-08 05:20:55 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2023-12-19 09:17:02 +00:00
|
|
|
export default withMT({
|
|
|
|
content: [
|
|
|
|
'./src/**/*.{js,jsx,ts,tsx}',
|
|
|
|
'../../node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}',
|
|
|
|
'../../node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}',
|
|
|
|
],
|
2023-12-08 05:20:55 +00:00
|
|
|
theme: {
|
2024-02-19 12:05:29 +00:00
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
snowball: {
|
|
|
|
200: '#DDEEFD',
|
|
|
|
500: '#47A4FA',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-12-08 05:20:55 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
2023-12-19 09:17:02 +00:00
|
|
|
});
|