I'm on a quest to achieve a unique visual impact for text using CSS that combines both a gradient and embossing. Take a look at the image I've included to see the effect I'm striving for.
Check out this Example Photo: https://i.sstatic.net/KEtlmZGy.png
This is the background style I have in mind:
background: linear-gradient(135deg, #3e296a 0%, #6d37ac 33%, #6d37ac 72%, #10dbac 100%);
And here are some Figma effects I'm considering:
https://i.sstatic.net/zOVUaOQ5.png https://i.sstatic.net/AJJNyN68.png
Here's what I've come up with so far:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gradient Text with Emboss Effect</title>
<style>
.gradient-text {
font-size: 100px;
font-weight: bold;
background: linear-gradient(135deg, #3e296a, #6d37ac, #10dbac);
-webkit-background-clip: text;
color: transparent;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25), 0px 4px 0px rgba(255, 255, 255, 0.3);
}
</style>
</head>
<body>
<div class="gradient-text">Decor</div>
</body>
</html>