From 848dd920e3a8f8bf357ec001bed3116217d1b5af Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 12 Oct 2025 12:00:57 -0400 Subject: [PATCH] fixed color schema --- src/components/IntegratedStrategy.tsx | 36 ++++++++++++++++++--------- 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/src/components/IntegratedStrategy.tsx b/src/components/IntegratedStrategy.tsx index caf983f..38106fe 100644 --- a/src/components/IntegratedStrategy.tsx +++ b/src/components/IntegratedStrategy.tsx @@ -14,6 +14,7 @@ interface Category { name: string count: number color: string + highlight: string items: TaskItem[] } @@ -33,7 +34,8 @@ const IntegratedStrategy = () => { { name: "Social", count: 4, - color: "bg-blue-100", + color: "bg-[rgba(60,135,255,0.17)]", + highlight: "bg-[#4C60E5]", items: [ { id: "1", @@ -68,7 +70,8 @@ const IntegratedStrategy = () => { { name: "Citation", count: 2, - color: "bg-blue-100", + color: "bg-[rgba(0,30,226,0.11)]", + highlight: "bg-[#4285F4]", items: [ { id: "5", @@ -89,7 +92,8 @@ const IntegratedStrategy = () => { { name: "Web 2.0", count: 3, - color: "bg-green-100", + color: "bg-[rgba(31,228,84,0.16)]", + highlight: "bg-[#34A853]", items: [ { id: "7", @@ -117,7 +121,8 @@ const IntegratedStrategy = () => { { name: "Multimedia", count: 1, - color: "bg-yellow-100", + color: "bg-[rgba(255,197,30,0.27)]", + highlight: "bg-[#FBBC05]", items: [ { id: "10", @@ -138,7 +143,8 @@ const IntegratedStrategy = () => { { name: "Social", count: 3, - color: "bg-blue-100", + color: "bg-[rgba(60,135,255,0.17)]", + highlight: "bg-[#4C60E5]", items: [ { id: "11", @@ -163,7 +169,8 @@ const IntegratedStrategy = () => { { name: "Citation", count: 5, - color: "bg-blue-100", + color: "bg-[rgba(0,30,226,0.11)]", + highlight: "bg-[#4285F4]", items: [ { id: "14", @@ -200,7 +207,8 @@ const IntegratedStrategy = () => { { name: "Web 2.0", count: 5, - color: "bg-green-100", + color: "bg-[rgba(31,228,84,0.16)]", + highlight: "bg-[#34A853]", items: [ { id: "19", @@ -232,7 +240,8 @@ const IntegratedStrategy = () => { { name: "Social", count: 5, - color: "bg-blue-100", + color: "bg-[rgba(60,135,255,0.17)]", + highlight: "bg-[#4C60E5]", items: [ { id: "22", @@ -269,7 +278,8 @@ const IntegratedStrategy = () => { { name: "Citation", count: 5, - color: "bg-blue-100", + color: "bg-[rgba(0,30,226,0.11)]", + highlight: "bg-[#4285F4]", items: [ { id: "27", @@ -306,7 +316,8 @@ const IntegratedStrategy = () => { { name: "Web 2.0", count: 2, - color: "bg-green-100", + color: "bg-[rgba(31,228,84,0.16)]", + highlight: "bg-[#34A853]", items: [ { id: "32", @@ -324,7 +335,8 @@ const IntegratedStrategy = () => {
-
+
+ {category.name} {category.count}
@@ -335,7 +347,7 @@ const IntegratedStrategy = () => {
{item.icon} {item.title}