picstack-ui/src/theme/index.ts
Leo f59d1d0f19 添加全局样式和主题配置
- 配置紫色主题(#7C3AED → #EC4899)
- 实现导航菜单简洁下划线样式
- 添加自定义滚动条样式
- 添加渐变背景类
- 添加瀑布流布局样式
- 添加动画效果和过渡
- 统一视觉风格和交互体验
2025-10-19 21:51:37 +08:00

11 lines
234 B
TypeScript

import type { ThemeConfig } from 'antd';
import { themeTokens, componentTokens } from './tokens';
export const theme: ThemeConfig = {
token: themeTokens,
components: componentTokens,
cssVar: true,
};
export * from './tokens';