Button Generator

Design beautiful buttons with comprehensive styling options, presets, and multiple export formats.

Button Properties
Live Preview
Button Output
.button {
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: system-ui;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.5;
  box-shadow: 0px 4px 12px #3b82f640;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px #3b82f666;
}

.button:active {
  transform: translateY(0);
}

.button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}