mirror of
https://github.com/BillyOutlast/posthog.com.git
synced 2026-02-04 03:11:21 +01:00
Co-authored-by: Cory Watilo <corywatilo@gmail.com> Co-authored-by: Eli Kinsey <eli@ekinsey.dev> Co-authored-by: Lucas Faria <12522524+lucasheriques@users.noreply.github.com> Co-authored-by: Ben White <ben@posthog.com> Co-authored-by: Juraj Majerik <juro.majerik@gmail.com> Co-authored-by: Rafael Audibert <32079912+rafaeelaudibert@users.noreply.github.com>
1.1 KiB
1.1 KiB
Components
Colors
<main data-scheme="primary" className="flex-1 bg-primary p-2">
color test:
<div data-scheme="primary" className="bg-primary text-primary border border-primary p-4">
<p className="text-secondary">Primary text</p>
<input
className="bg-input hover:bg-input-hover border-input hover:border-input-hover text-muted"
placeholder="Placeholder text"
/>
</div>
<div data-scheme="secondary" className="bg-primary text-primary border border-primary p-4">
<p className="text-secondary">Secondary text</p>
<input
className="bg-input hover:bg-input-hover border-input hover:border-input-hover text-muted"
placeholder="Placeholder text"
/>
</div>
<div data-scheme="tertiary" className="bg-primary text-primary border border-primary p-4">
<p className="text-secondary">Tertiary text</p>
<input
className="bg-input hover:bg-input-hover border-input hover:border-input-hover text-muted"
placeholder="Placeholder text"
/>
</div>
</main>