--- interface Props { accent?: string; isTitle?: boolean } const { accent, isTitle } = Astro.props as Props; let opachity = 0.05; if (isTitle) { opachity = 0.2; } ---