Home > Software engineering >  I am not getting as expecting background color
I am not getting as expecting background color

Time:01-29

background: linear-gradient(0deg, #0E0E10, #0E0E10), radial-gradient(38.45% 38.45% at 59.62% 66.21%, #000000 0%, rgba(2, 1, 7, 0.52031) 48.43%, rgba(196, 196, 196, 0) 100%, #635D8E 100%)

I am not getting an appropriate background.

CodePudding user response:

You can try using a background color instead of a linear and radial gradient. You can use something like this:

background: #0E0E10; 
background: -moz-linear-gradient(45deg, #000000 0%, #635D8E 100%); 
background: -webkit-linear-gradient(45deg, #000000 0%, #635D8E 100%); 
background: linear-gradient(45deg, #000000 0%, #635D8E 100%);

CodePudding user response:

What is your expectation? Is there any visual reference which we can share thoughts upon?

  • Related