How can I change the color of my headline text?

Hi,

Sorry if it already exist an answer, but been trying to change color on one of my headlines. If anyone wanna help me take a look at it? Please see the picture on which one it is:

URL: https://5hn0slfqg17x1469-56470536270.shopifypreview.com

Use this css

#shopify-section-template--20419209232707__108b5273-83bf-4bd3-a27d-374e383f65db span {
    color: red !important;
}

Hello @Dispomal :waving_hand:

In Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.banner__heading span {
    color: #FFFFFF;
}

The result

Make sure to change the color value as you need.

Thanks it worked!