DekGenius.com
CSS
gradient text
h1 {
font-size : 72 px ;
background : -webkit-linear-gradient ( #eee , #333 ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
text color as gradient css
.gradient-text {
background-color : #f3ec78 ;
background-image : linear-gradient ( 45 deg , #f3ec78 , #af4261 ) ;
background-size : 100 % ;
-webkit-background-clip : text;
-moz-background-clip : text;
-webkit-text-fill-color : transparent ;
-moz-text-fill-color : transparent ;
}
text-color gradient css
h1 {
font-size : 72 px ;
background : -webkit-linear-gradient ( #f3ec78 , #af4261 ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
Adding gradient to text color
h1 {
background : linear-gradient (
270.97 deg ,
#FFE580 -21.36 % ,
#FF7571 -2.45 % ,
#EA5DAD 26.84 % ,
#C2A0FD 64.15 % ,
#3BF0E4 108.29 % ,
#B2F4B6 159.03 % ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
linear gradient on text
h1 { font-size : 64 px ;
background-image : linear-gradient ( to right, #ba81cf , #6886d4 ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
gradient text color css
h4 {
background : linear-gradient ( to right, #494964 , #6f6f89 ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ; }
text gradient css3
h1 {
font-size : 72 px ;
background-image : linear-gradient (
110 deg ,
#463f64 ,
#463f64 ,
#e2285c
) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
CSS text gradient
h1 {
color : #524a48 ;
background : linear-gradient ( to right, rgba ( 255 , 239 , 223 , 0 ) 0 % , rgba ( 255 , 239 , 223 , 1 ) ) ;
opacity : 40 % ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
Gradient text
.gradient-text {
display : inline-block;
background : black ;
background : linear-gradient ( 135 deg , red 50 % , blue 50 % ) ;
background-clip : text;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
linear gradient in text
.heading-secondary {
font-size : 3.5 rem ;
text-transform : uppercase;
font-weight : 700 ;
display : inline-block;
background-image : linear-gradient ( to right, $color-primary-light, $color-primary-dark) ;
background-clip : text;
-webkit-background-clip : text;
color : transparent ;
letter-spacing : 0.2 rem ;
transition : all 0.2 s ;
text gradient in css
h1 {
font-size : 72 px ;
background : -webkit-linear-gradient ( rgb ( 55 , 120 , 204 ) , rgb ( 112 , 235 , 88 ) ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
text gradient effect
.text-gradient {
background : linear-gradient ( to right, #30CFD0 , #c43ad6 ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
css gradient text
h1 {
font-size : 72 px ;
background : -webkit-linear-gradient ( #f3ec78 , #af4261 ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
gradient text
selector h2 {
background-image : linear-gradient ( to right, #463f64 , #463f64 , #e2285c , #e2285c ) ;
-webkit-background-clip : text;
display : inline-block;
padding : 14 px ;
-webkit-text-fill-color : #00000000 ;
font-family : 'Stay Out Regular' ;
}
Color gradient for text
.text {
background-clip : text;
-webkit-background-clip : text;
color : rgba ( 0 , 0 , 0 , .2 ) ;
}
how to add gradient color to text
background-image : var ( --buttonBg ) ; // any color you want
background-size : 100 % ;
background-repeat : repeat;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
-moz-background-clip : text;
-moz-text-fill-color : transparent ;
css gradient text
.gradient-text {
background : -webkit-linear-gradient ( #3b82f6 , #a855f7 ) ;
-webkit-background-clip : text;
-webkit-text-fill-color : transparent ;
}
© 2022 Copyright:
DekGenius.com