anycoder-5bef383c / tailwind.config.js
Cambera's picture
Upload tailwind.config.js with huggingface_hub
0b8524d verified
raw
history blame contribute delete
389 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#2d4a3e',
secondary: '#f5f5f5',
accent: '#d4a574',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
}