Button Generator
Generate button styles with variants and hover effects
Colors
Spacing
16px
12px
Typography
16px
500
Border Radius
8px
Live Preview
Generated CSS
.button {
background-color: #3b82f6;
color: #ffffff;
padding: 12px 16px;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.button:hover {
opacity: 0.9;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}