colour gradient generator code example

Example 1: css gradient generator

/* 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

Example 2: css gradient generator

/*CSS Gradient Generator*/

https://cssgradient.io/

/*Example*/
.My-Class {
 background: linear-gradient(to right, blue/*Color1*/, dodgerblue/*Color1*/); 
}

Example 3: color gradient generator

/* "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%;
}

Example 4: css gradient generator

background: linear-gradient(Direction (keyword or degrees), color1 10% (10% width), color2 width (it's not neccessary), ...);

Tags:

Css Example