anycoder-d1e17039 / tailwind.config.js
kizabgd123's picture
Upload tailwind.config.js with huggingface_hub
601afde verified
raw
history blame contribute delete
610 Bytes
/** @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: [],
}