How to invert red/green color for this mql4 script?

I have found this indicator
MT4 indicator (Color_Stochastic.mq4) | Forex Indicators Guide

I want to invert the green and red color so I changed the source code from

#property indicator_color3 Lime
#property indicator_color4 Red

to

#property indicator_color3 Red
#property indicator_color4 Lime

but it doesn’t work so where should I change ?
:confused:

You did the right thing. Did you compile?

Finally it works: I had to delete the indicator from the chart thanks.

I didn’t know that. I thought recompiling was enough - it usually is with other changes like default settings and arrow codes.