Files
nearledaily_pos/tailwind.config.js
2026-06-29 15:19:19 +05:30

30 lines
643 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
shake: {
'0%, 100%': { transform: 'translateX(0)' },
'25%': { transform: 'translateX(-5px)' },
'75%': { transform: 'translateX(5px)' }
}
},
colors: {
primary: {
DEFAULT: '#662582',
light: '#f3e8f8',
dark: '#4a1b5e'
}
},
fontFamily: {
sans: ['Segoe UI', 'system-ui', '-apple-system', 'sans-serif']
}
},
},
plugins: [],
}