Violet text-lift
Violet text-lift: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-007 {
font: 600 14px/1 system-ui,sans-serif;
letter-spacing: .01em;
color: #fff;
background: #7c3aed;
border: 0;
border-radius: 8px;
padding: 12px 24px;
cursor: pointer;
transition: letter-spacing .2s,background .2s
}
.btn-007:hover {
background: #6d28d9;
letter-spacing: .06em
}
.btn-007:focus-visible {
outline: 2px solid #7c3aed;
outline-offset: 3px
}
.btn-007:active {
background: #5b21b6
}
HTML
<button class="btn-007">Join waitlist</button>Prompt
A solid violet button #7c3aed, white 14px semibold text, 8px radius, 12px by 24px padding. On hover the background goes #6d28d9 and the letter spacing widens from 0.01em to 0.06em over 200ms. Active #5b21b6. Focus outline 2px violet.