xxxxxxxxxx
BgcolorOfTexts: {
background: "rgb(2,0,36)",
background:
"linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(121,9,41,1) 35%, rgba(0,212,255,1) 100%)",
},
nouman
xxxxxxxxxx
/* 5 Best CSS Gradient Generator Links */
https://cssgradient.io/
https://www.colorzilla.com/gradient-editor/
https://www.css-gradient.com/
https://mycolor.space/gradient
https://uigradients.com/#Orca
xxxxxxxxxx
/*CSS Gradient Generator*/
https://cssgradient.io/
/*Example*/
.My-Class {
background: linear-gradient(to right, blue/*Color1*/, dodgerblue/*Color1*/);
}
xxxxxxxxxx
background-image: linear-gradient(90deg, #020024 0%, #090979 35%, #00d4ff 100%);
xxxxxxxxxx
/* "element" bieng the target class item to style */
.element{
background: rgb(2,0,36) !important;
background: linear-gradient(331deg, rgba(2,0,36,1) 0%, rgba(139,88,94,1) 0%, rgba(53,101,125,1) 14%, rgba(40,127,156,1) 29%, rgba(0,212,255,1) 100%) !important;
padding-bottom: 4%;
}
xxxxxxxxxx
background: #ba5370; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #ba5370, #f4e2d8); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #ba5370, #f4e2d8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
linear-gradient generator
xxxxxxxxxx
https://cssgradient.io/
https://www.css-gradient.com/
xxxxxxxxxx
css gradient generator:
https://freetoolssite.com/tools/gradient-creator-online
xxxxxxxxxx
background: linear-gradient(Direction (keyword or degrees), color1 10% (10% width), color2 width (it's not neccessary), ...);