Gradient Color Usage

Hi, I want to use the gradient colour for the headline. please let me know how can I use it.

Hi @Ahsan_Iqbal,

this is possible with some custom CSS.

First you add the CSS to Asset Manager </>

.text-color-gradient {
 background-image:linear-gradient(90deg,yellow,red);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}

You can adjust the linear-gradient parameters, this is just an example.

Next, you add the CSS class to the headline element:

At the end, you can enjoy your text color gradient:

Thanks for your guidance :blush:

2 Likes

You can also add more colors e.g. linear-gradient(90deg,yellow,#fff,blue,red);

and you can use hex color codes.

1 Like

Thanks, I used it.

1 Like