Generate a starter tailwind.config.js.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: { primary: "#0ea5e9" },
fontFamily: { sans: ['"Inter"', "sans-serif"] },
borderRadius: { DEFAULT: "0.5rem" },
},
},
plugins: [],
};