50 lines
928 B
JavaScript
50 lines
928 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: [],
|
|
}
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
animation: {
|
|
'marquee': 'marquee 30s linear infinite',
|
|
'marquee-pause': 'marquee 30s linear infinite paused',
|
|
},
|
|
keyframes: {
|
|
marquee: {
|
|
'0%': { transform: 'translateX(0)' },
|
|
'100%': { transform: 'translateX(-50%)' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |