可以在 ionic 上将文本颜色更改为线性渐变吗?

It is possible to change text color to linear-gradient on ionic?

我知道如何对背景使用线性渐变颜色,但可以对文本颜色做同样的事情吗?

谢谢

解决方案

 .toolbar-title{
    background: -webkit-linear-gradient(30deg,#4ba9fc,#31dab4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    //color: #fff;
    font-size: 3em;
    margin-top: 25px;
    text-align: center;
    font-family: "Lobster 1.4 Regular";