PopcornPing / frontend /tailwind.config.js
Yash Goyal
Correction
2070fe3
raw
history blame contribute delete
714 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
primary: {
50: '#f0f0ff',
100: '#e5e5ff',
200: '#d0d0ff',
300: '#b0b0ff',
400: '#8080ff',
500: '#6366f1',
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
},
},
plugins: [],
}