user13346803
user13346803

Reputation:

Any trick to darken the Linear Gradient?

body{
background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff6a00, #ee0979);
}

/* The code above is for linear-gradient, and I want to darken it */

Upvotes: 1

Views: 97

Answers (1)

Temani Afif
Temani Afif

Reputation: 273067

You can add a black background-color and you apply a darken blending mode

body {
  background: linear-gradient(to right, #ff6a00, #ee0979);
  background-color:rgba(0,0,0,0.5);
  background-blend-mode:darken;
}

Upvotes: 1

Related Questions