How to change the newsletter's content in the footer to a gradient color?

Hi,

is there a way to use on Header, footer gradient colors?

Thank you

To accomplish this, you can add the following CSS code to your website’s stylesheet:

.newsletter-footer {
  background: linear-gradient(to right, #ffffff, #f7d1c4);
}

This will create a gradient effect that starts from the left side of the footer and fades into a lighter color on the right side.