30 lines
600 B
TypeScript
30 lines
600 B
TypeScript
|
|
import type { Config } from "tailwindcss";
|
||
|
|
|
||
|
|
const config: Config = {
|
||
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
brand: {
|
||
|
|
50: "#f0faf6",
|
||
|
|
100: "#d8f3e8",
|
||
|
|
200: "#b4e8d3",
|
||
|
|
300: "#82d4b7",
|
||
|
|
400: "#4cb896",
|
||
|
|
500: "#289b78",
|
||
|
|
600: "#1a7d60",
|
||
|
|
700: "#0F6E56",
|
||
|
|
800: "#0e5a46",
|
||
|
|
900: "#0d4a3a",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ["var(--font-sans)", "system-ui", "sans-serif"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default config;
|