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;