# Observed when using types on the styled component, the syntax highlighting is not applied  # Code ```ts const Component = styled.div` border: 1px solid red; color: blue; `; const Component2 = styled.div<{ color: string }>` border: 1px solid red; color: ${p => p.color || 'blue'}; `; ```