/* add a grient to you text for all browsers */.gradient-text{background:-webkit-linear-gradient(#3b82f6,#a855f7);/* <-- create background gradient. */-webkit-background-clip: text;/* <-- have the gradient clip to the text. */-webkit-text-fill-color:transparent;/* <-- make the text fill transeparent. */}
/*create the gradient*/background-image:var(--buttonBg);// any color you want
/* Set the background size and repeat Properties */background-size:100%;background-repeat: repeat;/* Use the text as a mask for the background *//* Theis will show the gradient as a text color rather element bg*/-webkit-background-clip: text;-webkit-text-fill-color:transparent;-moz-background-clip: text;-moz-text-fill-color:transparent;