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
764 B
37 lines
764 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: "#0b0b0b",
|
|
card: "#0f0f10",
|
|
gold: "#C4A14B",
|
|
muted: "#9a9a9a",
|
|
glass: "rgba(255,255,255,0.03)",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', '"Source Han Sans"', 'Arial', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/typography"),
|
|
require("@tailwindcss/aspect-ratio"),
|
|
require("@tailwindcss/line-clamp"),
|
|
],
|
|
};
|
|
|
|
export default config;
|
|
|
|
|
|
|