CSS Tools

Button Generator

CSS button builder with 10 presets, hover states, and live preview.

Presets
Settings
Preview
CSS Code
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #0a0e1a;
  background: #00ffcc;
  border-radius: 8px;
  border: 0px solid #00ffcc;
  box-shadow: 0 4px 14px rgba(0, 255, 204, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #00e6b8;
  color: #0a0e1a;
}