Custom css code to change text color

Hi

Anyone care to share a custom css code to change the text color of ‘discount saved on woocommerce single product page’ ?

I want to change the text color from black to orange ( #ff4e00).

Simple Product screenshot

Shop page link

Variable product screenshot

Shop page link

Thanks in Advance

Try:

#saving_total_price,
#saving_total_price *{
 color:#ff4e00;
}

Resolved ! :100:

Thanks.