21 lines
365 B
TypeScript
21 lines
365 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
50: "#f5f6ef",
|
|
100: "#e3e6d2",
|
|
500: "#6f7a4f",
|
|
700: "#4e5837"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
export default config;
|