# Tiefsee (B 028)

Kategorie: Buttons  
Tags: gradient, solid, vertical, dark  
Seite: https://designforai.dev/de/snippet/btn-028

## Prompt

Ein dunkler vertikaler Verlaufs-Button von #0c4a6e oben nach #082f49 unten, 1px Rahmen #0e7490, ein 1px innerer weißer Glanz oben (15%), blassblauer Text #e0f2fe in 15px semibold, 8px Radius, 12px mal 24px Padding. Hover hellt den Verlauf auf (#155e75 nach #0c4a6e) und den Rahmen auf Cyan #22d3ee. Active flach #082f49. Fokus-Outline 2px Cyan.

## HTML

```html
<button class="btn-028">Dive in</button>
```

## CSS

```css
.btn-028 {
  font: 600 15px/1 system-ui,sans-serif;
  color: #e0f2fe;
  background: linear-gradient(180deg,#0c4a6e,#082f49);
  border: 1px solid #0e7490;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
  transition: background .2s,border-color .2s
}
.btn-028:hover {
  background: linear-gradient(180deg,#155e75,#0c4a6e);
  border-color: #22d3ee
}
.btn-028:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 2px
}
.btn-028:active {
  background: #082f49
}
```
