Manara / tailwind.config.js
Kebe77's picture
Create tailwind.config.js
4064afd verified
Raw
History Blame Contribute Delete
382 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
emerald: {
50: '#ecfdf5',
100: '#d1fae5',
600: '#059669',
700: '#047857',
800: '#065f46',
900: '#064e3b',
},
},
},
},
plugins: [],
}