24 lines
450 B
TypeScript
24 lines
450 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import forms from "@tailwindcss/forms";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
50: "#f0fdf4",
|
|
500: "#22c55e",
|
|
600: "#16a34a",
|
|
700: "#15803d",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [forms],
|
|
};
|
|
|
|
export default config;
|