.text-gradient {
	color: transparent;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}

.text-gradient-demo .text-linear-gradient {
	background-image: linear-gradient(coral, slateblue, coral, slateblue, coral, slateblue);
}
.text-gradient-demo .text-radial-gradient {
	background-image: radial-gradient(coral, slateblue, coral, slateblue, coral, slateblue, coral, slateblue);
}
.text-gradient-demo .text-conic-gradient {
	background-image: conic-gradient(coral, slateblue, coral, slateblue, coral, slateblue, coral, slateblue, coral);
}
.text-gradient-demo .text-repeating-conic-gradient {
	background-image: repeating-conic-gradient(coral 0 15deg, slateblue 0 30deg);
}