Code
tailwind
// tailwind.config.js
module.exports = {
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
brand: {
50: "#eef6ff",
500: "#1976d2",
700: "#0d47a1"
}
},
fontFamily: {
sans: ["Inter", "system-ui", "sans-serif"]
},
spacing: {
128: "32rem"
},
animation: {
"fade-in": "fadeIn 0.3s ease-in"
},
keyframes: {
fadeIn: { "0%": { opacity: "0" }, "100%": { opacity: "1" } }
}
}
},
plugins: []
};