Amber led on WRT3200ACM when VPN is down possible?

Hi, i just configured hotplug (thanks for that)
I have no power led I can edit, so left that out of the config.

iface file (in /etc/hotplug.d/iface/50-wanstatus

[ ifup = "$ACTION" ] && [ "$INTERFACE" = "tun0" ] && {

# none white:wan
echo "none" > /sys/class/leds/pca963x\:rango\:white\:wan/trigger

# netdev:tun0:rx:tx amber:wan
echo "netdev" > /sys/class/leds/pca963x\:rango\:amber\:wan/trigger
echo "tun0" > /sys/class/leds/pca963x\:rango\:amber\:wan/device_name
echo "1" > /sys/class/leds/pca963x\:rango\:amber\:wan/link
echo "1" > /sys/class/leds/pca963x\:rango\:amber\:wan/tx
echo "1" > /sys/class/leds/pca963x\:rango\:amber\:wan/rx
    }

[ ifdown = "$ACTION" ] && [ "$INTERFACE" = "tun0" ] && {

# none amber:wan
echo "none" > /sys/class/leds/pca963x\:rango\:amber\:wan/trigger

# netdev:eth1.2:rx:tx white:wan
echo "netdev" > /sys/class/leds/pca963x\:rango\:white\:wan/trigger
echo "eth1.2" > /sys/class/leds/pca963x\:rango\:white\:wan/device_name
echo "1" > /sys/class/leds/pca963x\:rango\:white\:wan/link
echo "1" > /sys/class/leds/pca963x\:rango\:white\:wan/tx
echo "1" > /sys/class/leds/pca963x\:rango\:white\:wan/rx
  }

And my /etc/config/system file

config led
        option default '0'
        option trigger 'netdev'
        option sysfs 'pca963x:rango:amber:wan'
        option name 'wan_amber'
        list mode 'link'
        list mode 'tx'
        list mode 'rx'
        option dev 'tun0'

config led
        option default '0'
        option sysfs 'pca963x:rango:white:wan'
        option name 'wan_white'
        option trigger 'netdev'
        list mode 'link'
        list mode 'tx'
        list mode 'rx'
        option dev 'eth1.2'

So now, when my vpn is up, the led is amber and when my vpn is down the led is white. It works, but I want this the other way around (white when vpn is up and amber when it's down)

I thought just change al the white to amber and al the amber to white right?

Then the led stays white in both states. Any ideas?