Hello. I'm looking to make text with a gradient like this

It's a screenshot from a WIP Godot project but I don't think this is possible just using default nodes and their built-in options

I'm thinking the dev may have used shaders, but I wasn't able to find any shaders to replicate this, any help? I'm terrible at shaders

A CanvasItem shader might do it. If you care to share a test scene or project I'll take a look at it.

My guess is a vertex shader was used to applied the gradient, where the bottom two vertices are one color and the top two vertices are another.

Here's some resources I found that might be helpful: Godot QA question on gradients in fonts - The solution is using Light2D node (a little old but might still work?) Reddit post on gradient text that has a shader example - The post is a little old, but I think the shader should still work. * GitHub repository for a text gradient - Uses a shader and is the most up-to-date solution I could find.

a year later