import type { Config } from "tailwindcss"; import typography from "@tailwindcss/typography"; const config: Config = { content: [ "./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { surface: { DEFAULT: "#1a1a2e", light: "#252540", dark: "#12121f", }, accent: { DEFAULT: "#4a9eff", hover: "#3a8eef", }, }, }, }, plugins: [typography], }; export default config;