Card

Cards contains any content.

# Cards

Some Text
html
<div class="card w-32 h-32">Some Text</div>

# Cards with center-aligned contents

Some Text
html
<div class="card card-center w-32 h-32">Some Text</div>

# Circle cards

Some Text
html
<div class="card card-center card-circle w-32 h-32">Some Text</div>

# Colorized cards

Some Text
Some Text
Some Text
Some Text
Some Text
Some Text
html
<div class="flex flex-wrap gap-4">
  <div class="card card-primary w-32 h-32">Some Text</div>
  <div class="card card-secondary w-32 h-32">Some Text</div>
  <div class="card card-neutral w-32 h-32">Some Text</div>
  <div class="card card-success w-32 h-32">Some Text</div>
  <div class="card card-warning w-32 h-32">Some Text</div>
  <div class="card card-error w-32 h-32">Some Text</div>
</div>