Dashed outline
Dashed outline: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-012 {
font: 500 14px/1 system-ui,sans-serif;
color: #6b7280;
background: transparent;
border: 2px dashed #d1d5db;
border-radius: 8px;
padding: 12px 20px;
cursor: pointer;
transition: border-color .15s,color .15s,background .15s
}
.btn-012:hover {
border-color: #2563eb;
color: #2563eb;
background: #eff6ff
}
.btn-012:focus-visible {
outline: 2px solid #2563eb;
outline-offset: 2px
}
.btn-012:active {
background: #dbeafe
}
HTML
<button class="btn-012">+ Add item</button>Prompt
An "add item" style button with a 2px dashed #d1d5db border, grey #6b7280 text at 14px, 8px radius, 12px by 20px padding, transparent background. Hover turns border and text blue #2563eb and the background pale blue #eff6ff. Active #dbeafe. Focus outline 2px blue.