Animated Gradient Background Generator

PHOTO EMBED

Fri Jul 04 2025 22:20:01 GMT+0000 (Coordinated Universal Time)

Saved by @Shookthadev999

.gradient-background {
  background: linear-gradient(300deg,deepskyblue,darkviolet,blue);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
copy
content_copyCOPY

https://animated-gradient-background-generator.netlify.app/