diff --git a/src/components/typography/Text.style.ts b/src/components/typography/Text.style.ts index 95d4de6..c65371d 100644 --- a/src/components/typography/Text.style.ts +++ b/src/components/typography/Text.style.ts @@ -27,6 +27,8 @@ export const TextElement = styled.span` switch (props.color) { case "primary": return "var(--color-primary)"; + default : + return props.color; } }}; `;