# Dark stars quote (C 026)

Category: Cards  
Tags: testimonial, quote, dark, stars, avatar  
Page: https://designforai.dev/snippet/card-026

## Prompt

Build a 320px dark testimonial card: background #0b0f19, 1px #1f2937 border (lightens to #374151 on hover), 16px radius, 24px padding. Top: five amber stars "★★★★★" in #fbbf24 with 2px letter-spacing. Quote in 15px #d1d5db with 1.6 line-height. Footer row: a 40px circular avatar with 135deg gradient #34d399 to #0ea5e9, then name in 14px bold #e5e7eb and role in 12px #9ca3af stacked.

## HTML

```html
<figure class="card-026">
  <div class="card-026__stars">★★★★★</div>
  <blockquote>The thermostat learned our schedule in a week. Nobody has touched it since.</blockquote>
  <figcaption><span class="card-026__avatar"></span><span class="card-026__who"><b>Ines Duarte</b><small>Facilities lead, Parcel</small></span></figcaption>
</figure>
```

## CSS

```css
.card-026 {
  width: 320px;
  margin: 0;
  padding: 24px;
  background: #0b0f19;
  border: 1px solid #1f2937;
  border-radius: 16px;
  font-family: system-ui,sans-serif;
  color: #e5e7eb;
  transition: border-color .2s
}
.card-026:hover {
  border-color: #374151
}
.card-026__stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fbbf24
}
.card-026 blockquote {
  margin: 12px 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db
}
.card-026 figcaption {
  display: flex;
  align-items: center;
  gap: 12px
}
.card-026__avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg,#34d399,#0ea5e9)
}
.card-026__who {
  display: flex;
  flex-direction: column
}
.card-026 b {
  font-size: 14px
}
.card-026 small {
  font-size: 12px;
  color: #9ca3af
}
```
