2d847e154f
中华文明全图鉴——文物全图系统(PC Web 地图 + NestJS API + 管理后台)。 含三大 IP(文物南迁北归 / 国宝海外回归 / 博物馆手艺人)、AI 文物对话、 文物地图与详情、以及 demo-video-kit 演示视频生成工具。
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// 东方审美主色
|
|
ink: {
|
|
DEFAULT: "#1a1a2e",
|
|
light: "#2d2d4a",
|
|
},
|
|
gold: {
|
|
DEFAULT: "#c9a84c",
|
|
light: "#e8cc7a",
|
|
dark: "#9e7a28",
|
|
},
|
|
celadon: {
|
|
DEFAULT: "#8fbcb0",
|
|
light: "#b5d4cd",
|
|
dark: "#5f9088",
|
|
},
|
|
vermilion: {
|
|
DEFAULT: "#c94b4b",
|
|
light: "#e07070",
|
|
dark: "#9e2a2a",
|
|
},
|
|
parchment: {
|
|
DEFAULT: "#f5f0e8",
|
|
dark: "#e8dfc8",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
serif: ["Noto Serif SC", "serif"],
|
|
sans: ["Noto Sans SC", "sans-serif"],
|
|
mono: ["JetBrains Mono", "monospace"],
|
|
},
|
|
animation: {
|
|
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
|
|
"fade-in": "fadeIn 0.4s ease-in-out",
|
|
"slide-up": "slideUp 0.3s ease-out",
|
|
},
|
|
keyframes: {
|
|
fadeIn: {
|
|
"0%": { opacity: "0" },
|
|
"100%": { opacity: "1" },
|
|
},
|
|
slideUp: {
|
|
"0%": { transform: "translateY(12px)", opacity: "0" },
|
|
"100%": { transform: "translateY(0)", opacity: "1" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|