best gradient colors code example
Example 1: gradient font color css
h1 {
font-size: 72px;
background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
Example 2: uigradients
background: #0f2027;
background: -webkit-linear-gradient(to right, #0f2027, #203a43, #2c5364);
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
Example 3: ui gradient
background: #000428;
background: -webkit-linear-gradient(to bottom, #000428, #004e92);
background: linear-gradient(to bottom, #000428, #004e92);