Files
posthog.com/README-OS.md
Cory Watilo 15c925b43d version bump (#12254)
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>
2025-09-10 16:33:30 +00:00

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>