|
const { withMaterialColors } = require('tailwind-material-colors');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,ts}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Roboto', 'sans-serif'],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|