All components

Card Colored

Card Colored is a React and Tailwind CSS card component from Bund UI, licensed MIT. Copy it and paste it into your project.

Bund UI MIT cards

What it is

Card Colored is a React and Tailwind CSS card component from Bund UI, licensed MIT. Copy it and paste it into your project.

How to use it

Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.

Open in the catalogue

Five free copies a month. No card.

No packages beyond the project baseline

Licence

This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.

Card Colored

examples/components/card/colored/page.tsx
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";

export default function CardDemo() {
  return (
    <div className="flex flex-col gap-4">
      <Card className="w-full max-w-sm border-purple-300 bg-purple-50 shadow-none dark:border-purple-800 dark:bg-purple-950">
        <CardHeader>
          <CardTitle>Card Title</CardTitle>
          <CardDescription>This is where the card description is.</CardDescription>
        </CardHeader>
        <CardContent>
          <p className="text-sm">This is the card content. Other content is added here.</p>
        </CardContent>
      </Card>
      <Card className="w-full max-w-sm border-sky-300 bg-sky-50 shadow-none dark:border-sky-800 dark:bg-sky-950">
        <CardHeader>
          <CardTitle>Card Title</CardTitle>
          <CardDescription>This is where the card description is.</CardDescription>
        </CardHeader>
        <CardContent>
          <p className="text-sm">This is the card content. Other content is added here.</p>
        </CardContent>
      </Card>
    </div>
  );
}

Similar components