Free Tailwind CSS Tool
Generate Your
Tailwind Config
Customize colors, fonts, spacing, and breakpoints visually — then copy your tailwind.config.js in one click. No login required.
🎨
Visual Theme Editor
Set custom brand colors, typography, and spacing through an intuitive GUI — no hand-editing config files.
📐
Breakpoints & Fonts
Configure responsive breakpoints and font families that perfectly match your design system.
⚡
Instant Export
Copy your complete tailwind.config.js or tailwind.config.ts to clipboard in one click, ready to paste.
Tailwind Version
Output Format
tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: "#3b82f6",
secondary: "#6366f1",
},
fontFamily: {
sans: ["Inter", "ui-sans-serif", "system-ui"],
serif: ["ui-serif", "Georgia", "Cambria"],
mono: ["ui-monospace", "SFMono-Regular", "Menlo"],
},
screens: {
"sm": "640px",
"md": "768px",
"lg": "1024px",
"xl": "1280px",
"2xl": "1536px",
},
},
},
};Frequently Asked Questions
Everything you need to know about Tailwind Config Generator.