29 lines
502 B
JavaScript
29 lines
502 B
JavaScript
// /** @type {import('tailwindcss').Config} */
|
|
// module.exports = {
|
|
// content: [
|
|
// "./src/**/*.{js,jsx,ts,tsx}",
|
|
// ],
|
|
// theme: {
|
|
|
|
// extend: {},
|
|
// },
|
|
// plugins: [],
|
|
// }
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
backgroundColor: {
|
|
'default': '#ffffff', // Белый цвет
|
|
},
|
|
},
|
|
colors: {
|
|
'black': '#232323',
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |