agent-go / tailwind.config.js
arudradey's picture
Create tailwind.config.js
213870e verified
raw
history blame contribute delete
471 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "sans-serif"],
},
colors: {
primary: "#6366f1",
surface: "#0f0f13",
card: "#1a1a24",
border: "#2a2a3a",
},
},
},
plugins: [],
};