Initial commit

This commit is contained in:
史悦
2026-02-02 18:30:58 +08:00
commit ae1ca8bfaa
40 changed files with 10900 additions and 0 deletions

52
tailwind.config.js Normal file
View File

@@ -0,0 +1,52 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
// 知识领域主题色
ka: {
integration: '#6366F1', // 整合管理 - Indigo
scope: '#8B5CF6', // 范围管理 - Violet
schedule: '#EC4899', // 进度管理 - Pink
cost: '#10B981', // 成本管理 - Emerald
quality: '#F59E0B', // 质量管理 - Amber
resource: '#3B82F6', // 资源管理 - Blue
communication: '#06B6D4', // 沟通管理 - Cyan
risk: '#EF4444', // 风险管理 - Red
procurement: '#84CC16', // 采购管理 - Lime
stakeholder: '#F97316', // 相关方管理 - Orange
},
// 过程组主题色
pg: {
initiating: '#22C55E', // 启动 - Green
planning: '#3B82F6', // 规划 - Blue
executing: '#F59E0B', // 执行 - Amber
monitoring: '#8B5CF6', // 监控 - Violet
closing: '#6B7280', // 收尾 - Gray
},
},
fontFamily: {
sans: [
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
},
},
plugins: [],
}