Button Generator

Design and export beautiful CSS buttons.

.custom-btn {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
}

.custom-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.4);
}

#6366f1
#ec4899