Want to change the color of Sale price to Red (Original price remain Black) IMPULSE THEME

Hi,

I hope everyone is doing well, I have a question and I hope you guys will guide me. On Impulse theme, the original and sale price color are set in the same color by default.

I want to change color Sale price to RED and original price remain in Black, I have found a custom css code ‘’ .product__price.on-sale {color: #F91111;} ‘’ from other discussion but it only changed the sale price on product page but not on homepage, please help!

Use this css for homepage

.grid-product__price--original {
    color: #000;
}
.grid-product__price {
    color: #F91111;
}