ตัวจัดรูปแบบและโค้ด
ตัวสร้าง Tailwind Config
Build a tailwind.config.js from your design tokens.
Brand colours
Font families
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx,html}"],
theme: {
extend: {
colors: {
primary: "#d4a259",
secondary: "#3b82f6",
accent: "#10b981",
},
fontFamily: {
sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"],
serif: ["Lora", "ui-serif", "Georgia", "serif"],
mono: ["JetBrains Mono", "ui-monospace", "SFMono-Regular", "monospace"],
},
},
},
plugins: [],
};หมายเหตุจากบรรณาธิการ
Understanding · A design system, expressed as a config file.
บทเชิงลึกนี้มีให้บริการเฉพาะภาษาอังกฤษในขณะนี้ เครื่องมือแปลงด้านบนทำงานในภาษาของคุณ บทความอธิบายแบบยาวยังไม่ได้แปล
คำถามที่พบบ่อย
Quick answers.
›Which Tailwind versions are supported?
The generator produces syntax compatible with Tailwind CSS v3.x, including the `content` and `theme` object structures.
›Does this tool collect my design tokens?
No. The configuration object is built entirely within your browser and is not sent to any external server.
›Can I add custom colours?
Yes. You can define hex codes for your primary, secondary, and neutral palettes, which are then mapped to the `theme.extend.colors` object.
›Is a build step required?
The tool only generates the JavaScript configuration file. You will still need the Tailwind CSS CLI or a PostCSS setup to compile your final CSS.
ผู้คนยังค้นหา
เครื่องมือที่เกี่ยวข้อง
More in this room.
- JSON เป็น React Hook Form + ZodTyped form schema และ useForm hook จากรูปแบบ JSON
- JSON เป็น Next.js Server ActionServer Action พร้อมการแยกวิเคราะห์ Zod และ revalidatePath
- JSON เป็น Prisma Schema Modelสร้าง Prisma model block จากตัวอย่าง JSON
- JSON เป็น Drizzle ORM Schemaนิยาม Drizzle pgTable พร้อม $inferSelect / $inferInsert
- JSON เป็น TypeORM EntityTypeORM @Entity class พร้อม decorators และ id ที่สร้างขึ้น
- JSON เป็น Mongoose Schema + ModelMongoose Schema + model พร้อม timestamps และ types