diff --git a/src/pages/flowEditor/components/nodeContentApp.tsx b/src/pages/flowEditor/components/nodeContentApp.tsx index cc355a8..c5d9d06 100644 --- a/src/pages/flowEditor/components/nodeContentApp.tsx +++ b/src/pages/flowEditor/components/nodeContentApp.tsx @@ -120,7 +120,16 @@ const getGroupColor = (groupId: number) => { '#faad14', // 黄色 '#f5222d', // 红色 '#722ed1', // 紫色 - '#13c2c2' // 青色 + '#13c2c2', // 青色 + '#eb2f96', // 粉色 + '#a0d911', // 青绿色 + '#ff7a45', // 橙色 + '#9254de', // 深紫色 + '#40a9ff', // 浅蓝色 + '#ff4d4f', // 亮红色 + '#36cfc9', // 深青色 + '#fadb14', // 亮黄色 + '#c41d7f' // 深粉色 ]; return colors[groupId % colors.length]; };