File size: 382 Bytes
4064afd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /** @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: [],
} |