Website/tailwind.config.ts
2024-12-01 00:06:12 -05:00

25 lines
571 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
darkBlue: "#0f172a",
yellow: "#facc15",
lightGray: "#f1f5f9",
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
};
export default config;