diff --git a/site/src/pages/TemplateBuilder/SelectionSummary.tsx b/site/src/pages/TemplateBuilder/SelectionSummary.tsx index 78d2a6328b858..87e2face59957 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} +