Sunflower bold
Sunflower bold: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-006 {
font: 700 16px/1 system-ui,sans-serif;
color: #1c1917;
background: #facc15;
border: 0;
border-radius: 10px;
padding: 14px 28px;
cursor: pointer;
transition: background .15s,transform .15s
}
.btn-006:hover {
background: #eab308;
transform: translateY(-1px)
}
.btn-006:focus-visible {
outline: 3px solid #1c1917;
outline-offset: 2px
}
.btn-006:active {
background: #ca8a04;
transform: none
}
HTML
<button class="btn-006">Buy now</button>Prompt
A bright yellow button #facc15 with near-black text #1c1917, 16px bold, 10px radius, 14px by 28px padding. On hover it darkens to #eab308 and lifts 1px; active drops back and uses #ca8a04. Focus ring 3px near-black.