You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
762 B
37 lines
762 B
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;
|
|
|
|
|
|
|