mirror of
https://github.com/LiuYuYang01/ThriveX-Blog.git
synced 2026-07-02 06:04:55 +08:00
22 lines
480 B
TypeScript
22 lines
480 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#539dfd', // 添加自定义颜色
|
|
},
|
|
transitionDuration: {
|
|
'DEFAULT': '300ms', // 添加默认过渡时间为0.3秒
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|