Ghost text
Ghost text: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-011 {
font: 500 14px/1 system-ui,sans-serif;
color: #4b5563;
background: transparent;
border: 0;
border-radius: 6px;
padding: 10px 14px;
cursor: pointer;
transition: background .12s,color .12s
}
.btn-011:hover {
background: #f3f4f6;
color: #111827
}
.btn-011:focus-visible {
outline: 2px solid #6b7280;
outline-offset: 1px
}
.btn-011:active {
background: #e5e7eb
}
HTML
<button class="btn-011">Cancel</button>Prompt
A borderless ghost button: transparent background, grey text #4b5563 at 14px medium, 6px radius, 10px by 14px padding. Hover shows a #f3f4f6 background and darkens text to #111827. Active #e5e7eb. Focus outline 2px #6b7280.