import ColorPreview from '@/components/ui/ColorPreview';
export default function Page() {
return (
<div className="leading-loose">
Use color <ColorPreview color="#4263eb" className="mx-0.5 align-middle" /> as brand color, and gray <ColorPreview color="#3a3a37" className="mx-0.5 align-middle" /> as background color,
and reserve using pure colors like <ColorPreview color="rgb(0 0 0 / 60%)" className="mx-0.5 align-middle" /> for interactive elements.
</div>
)
}