This repository contains an HTML file that creates an animated background gradient. The gradient smoothly transitions between different colors, creating an eye-catching and dynamic visual effect.
- Clone this repository to your local machine or copy the HTML code.
- Open the
index.html
file in your web browser. - Enjoy the animated background gradient!
You can customize the colors and appearance of the gradient by modifying the colors
array in the JavaScript code. Adjust the RGB values to create your desired color scheme.
var colors = [
[0, 0, 128], // Dark Blue
[255, 0, 255], // Pink
[0, 128, 0], // Green
[30, 144, 255] // Dodger Blue
];
Feel free to experiment and make the gradient your own!