1

See below for an example of what I want to achieve. choppy and smooth gradient

I can see the difference between the two, but if you can't, here's another image.

smooth and choppy gradient 2

desbest
  • 4,746
  • 11
  • 51
  • 84
  • This is beyond my ken but you might be able to do it with SVG filters? https://codepen.io/AmeliaBR/pen/ZYGYOQ – xdhmoore Nov 17 '20 at 00:17

1 Answers1

3

by applying another gradient on a top of it:

html {
   height:100%;
   background:
     linear-gradient(transparent,rgba(0,0,0,0.03)) 0 0/100% 20px,
     linear-gradient(#1ec5a6,#fff);
}
Temani Afif
  • 245,468
  • 26
  • 309
  • 415