DRY & KISS Principles

How does this event handling implementation violate both DRY and KISS principles?
const handleMouseEnter = (event) => {
  event.target.style.backgroundColor = '#e5e5e5';
  event.target.style.transform = 'scale(1.05)';
  event.target.style.transition = 'all 0.3s ease';
};

const handleMouseLeave = (event) => {
  event.target.style.backgroundColor = '';
  event.target.style.transform = 'scale(1)';
  event.target.style.transition = 'all 0.3s ease';
};

const handleFocus = (event) => {
  event.target.style.backgroundColor = '#e5e5e5';
  event.target.style.transform = 'scale(1.05)';
  event.target.style.transition = 'all 0.3s ease';
};

const handleBlur = (event) => {
  event.target.style.backgroundColor = '';
  event.target.style.transform = 'scale(1)';
  event.target.style.transition = 'all 0.3s ease';
};
Next Question (10/20)