top of page

Utility

Tools

Wix CSS Code - Conic Gradient

Image showing conic text gradient effect in Wix Using CSS

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;
}

bottom of page