Wix CSS Code – Conic Gradient

This CSS code adds a conic gradient effect to your text. Add your colors and gradient angle in code syntax

background: conic-gradient(from 45deg, #00f5d4, #7209b7, #3a86ff, #48cae4)

Code



.css-tutorial {
   background: conic-gradient(from 45deg, #00f5d4, #7209b7, #3a86ff, #48cae4);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

Leave a Reply

Your email address will not be published. Required fields are marked *