From 6a57f4751f04dc68f47288ae83f32497a806b8a9 Mon Sep 17 00:00:00 2001 From: Andrew Aquino Date: Wed, 24 Jun 2026 12:13:19 -0700 Subject: [PATCH] feat(site): give SelectionSummary's template/module names secondary text color (#26580) Figma design: https://www.figma.com/design/z1qkNiNIya2myaVW4kR6jP/Template-creation-builder?node-id=450-8030&m=dev --- site/src/pages/TemplateBuilder/SelectionSummary.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/site/src/pages/TemplateBuilder/SelectionSummary.tsx b/site/src/pages/TemplateBuilder/SelectionSummary.tsx index 78d2a6328b..87e2face59 100644 --- a/site/src/pages/TemplateBuilder/SelectionSummary.tsx +++ b/site/src/pages/TemplateBuilder/SelectionSummary.tsx @@ -75,7 +75,7 @@ const stepCircleVariants = cva( variant: { complete: "border-border-success bg-surface-green", current: "border-border-success", - upcoming: "border-border text-content-secondary", + upcoming: "border-border text-content-disabled", }, }, }, @@ -86,7 +86,7 @@ const stepLabelVariants = cva("font-normal mr-2", { variant: { complete: "text-content-primary", current: "text-content-primary", - upcoming: "text-content-secondary", + upcoming: "text-content-disabled", }, }, }); @@ -154,7 +154,7 @@ const BaseTemplateSelection: React.FC = ({ alt={`${template.name} icon`} className="w-6 h-6 p-1 rounded-sm border border-border border-solid bg-surface-secondary" /> - {template.name} + {template.name} ); @@ -183,7 +183,9 @@ const ModuleSelection: React.FC = ({ className="block w-6 h-6 p-1 rounded-sm border border-border border-solid bg-surface-secondary" /> - {module.name} + + {module.name} +