import type { Config } from "tailwindcss"; const config: Config = { content: [ "./app/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./lib/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { surface: "#f3f3f5", ink: "#273040", brand: "#98143f", accent: "#d4af37", }, }, }, plugins: [], }; export default config;