Rose outline pill
Rose outline pill: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-015 {
font: 600 13px/1 system-ui,sans-serif;
color: #be123c;
background: transparent;
border: 1.5px solid #be123c;
border-radius: 999px;
padding: 9px 18px;
cursor: pointer;
transition: background .15s,color .15s
}
.btn-015:hover {
background: #fff1f2
}
.btn-015:focus-visible {
outline: 2px solid #be123c;
outline-offset: 2px
}
.btn-015:active {
background: #be123c;
color: #fff
}
HTML
<button class="btn-015">Follow</button>Prompt
A pill-shaped outline button with a 1.5px rose border #be123c and rose text, 13px semibold, 9px by 18px padding, fully rounded. Hover tints the background #fff1f2; active fills solid rose with white text. Focus ring 2px rose.