import type { Config } from "tailwindcss"; const config: Config = { content: [ "./app/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { brand: { orange: "#ff6900", }, huilong: { bg: "#f6f8fc", card: "#ffffff", gold: "#0f3c88", muted: "#5b6a86", glass: "rgba(15,60,136,0.08)", }, }, fontFamily: { sans: ['Inter', '"Source Han Sans"', 'Arial', 'sans-serif'], }, }, }, plugins: [ require("@tailwindcss/typography"), require("@tailwindcss/aspect-ratio"), require("@tailwindcss/line-clamp"), ], }; export default config;