17 lines
426 B
JavaScript
17 lines
426 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {},
|
|
fontFamily: {
|
|
sans: ["Inter", "sans-serif"], // Современный шрифт, похожий на макет
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|