/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}"],
theme: {
extend: {
colors: {
purple: "#a41d48",
secondary: "#ff9900",
gray: "#e5e5e3",
"dark-gray": "#1d1d1d",
yellowColor: "#F79532",
"paragraph-color": "#6b7280",
},
},
},
plugins: [],
};