Progress ring conic
Progress ring conic: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-183 {
--p: 0;
width: 64px;
height: 64px;
display: inline-grid;
place-items: center;
font: 700 13px/1 system-ui,sans-serif;
color: #1e3a8a;
background: conic-gradient(#3b82f6 calc(var(--p)*1%),#dbeafe 0);
border: 0;
border-radius: 50%;
cursor: pointer;
position: relative;
isolation: isolate;
transition: transform .2s
}
.btn-183::before {
content: "";
position: absolute;
inset: 6px;
border-radius: 50%;
background: #fff;
z-index: -1
}
.btn-183:hover {
transform: scale(1.05)
}
.btn-183:focus-visible {
outline: 2px solid #3b82f6;
outline-offset: 3px
}
.btn-183:active {
transform: scale(.97)
}
HTML
<button class="btn-183" style="--p:72" aria-label="72 percent done">72%</button>Prompt
A 64px round progress button: a conic gradient ring in blue #3b82f6 that covers a percentage set by the --p custom property (unitless, e.g. 72) with the rest in pale #dbeafe, a white inner disc inset 6px, and the percentage in 13px bold #1e3a8a in the centre. Hover scales 1.05, active 0.97. Focus 2px blue outline.