Candy
Gradient · .btn-candy
Text
Class name
Color hue
Radius · 14px
Size
.btn-candy {
display: inline-block;
padding: 13px 28px;
border: none;
border-radius: 14px;
background: linear-gradient(135deg, #f472b6, #a78bfa);
color: #ffffff;
font-family: inherit;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-candy:hover {
filter: brightness(1.08);
transform: scale(1.03);
}
.btn-candy:active {
transform: scale(0.98);
}