# Dark embossed stat (C 031)

Category: Cards  
Tags: neumorphic, soft-ui, dark, stat, embossed  
Page: https://designforai.dev/snippet/card-031

## Prompt

Create a dark neumorphic stat card on a #2b2f36 surface: 240px wide, same background, 18px radius, dual shadow 8px 8px 16px #1f2227 and -8px -8px 16px #373c41. Content: uppercase 12px #9ca3af label "Active users", a 32px bold number "12,480" in #e5e7eb, and a 12px tall progress track pressed into the surface with inset shadows, holding a pill bar at 64% width filled with a 90deg gradient #22d3ee to #818cf8 that grows to 72% on hover.

## HTML

```html
<div class="card-031-bg">
  <article class="card-031">
    <span>Active users</span>
    <strong>12,480</strong>
    <div class="card-031__bar"><i></i></div>
  </article>
</div>
```

## CSS

```css
.card-031-bg {
  display: inline-block;
  padding: 36px;
  background: #2b2f36;
  border-radius: 24px
}
.card-031 {
  width: 240px;
  padding: 22px;
  background: #2b2f36;
  border-radius: 18px;
  box-shadow: 8px 8px 16px #1f2227,-8px -8px 16px #373c41;
  font-family: system-ui,sans-serif;
  color: #e5e7eb
}
.card-031 span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ca3af
}
.card-031 strong {
  display: block;
  margin: 6px 0 16px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.02em
}
.card-031__bar {
  height: 12px;
  border-radius: 999px;
  background: #2b2f36;
  box-shadow: inset 3px 3px 6px #1f2227,inset -3px -3px 6px #373c41;
  padding: 3px
}
.card-031__bar i {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg,#22d3ee,#818cf8);
  transition: width .4s
}
.card-031:hover .card-031__bar i {
  width: 72%
}
```
