Spaces:
Build error
Build error
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: [ | |
| './pages/**/*.{js,ts,jsx,tsx}', | |
| './components/**/*.{js,ts,jsx,tsx}', | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: { | |
| 50: '#ffe8e8', | |
| 100: '#ffd0d0', | |
| 200: '#ffa1a1', | |
| 300: '#ff7272', | |
| 400: '#ff4343', | |
| 500: '#ff4b4b', | |
| 600: '#e04444', | |
| 700: '#c63d3d', | |
| 800: '#a03333', | |
| 900: '#7a2828', | |
| }, | |
| gradient: { | |
| start: '#667eea', | |
| end: '#764ba2', | |
| }, | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } |