It's a LIFX multi-zone LED strip capable of showing different colors. Triggering is not an issue. Here's my attempt at a rule.
zonesLoad(RRRR) on Master Bedroom Lightstrip
On: Master Bedroom Lightstrip
Repeat 1 times every 0:00:02 (stopable)
IF (Security System closed(F) [FALSE]) THEN
setZones(0:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500", 1:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
ELSE
setZones(0:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500", 1:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
END-IF
IF (Fireplace Switch Sensor open(T) [TRUE]) THEN
setZones(2:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500", 3:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
ELSE
setZones(2:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500", 3:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
END-IF
IF (Garage Door Main Sensor, Garage Side Door Sensor all closed(T) [TRUE]) THEN
setZones(4:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500", 5:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
ELSE
setZones(4:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500", 5:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
END-IF
IF (All Lights(on) is off(F) [FALSE]) THEN
setZones(6:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500", 7:"hue: 260, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
ELSE
setZones(6:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500", 7:"hue: 0, brightness: 1, saturation: 100, kelvin: 4500") on Master Bedroom Lightstrip
END-IF
IF (Security System closed(F) AND
Fireplace Switch Sensor open(T) AND
Garage Door Main Sensor, Garage Side Door Sensor all closed(T) AND
All Lights(on) is off(F) [FALSE]) THEN
Delay 0:00:10
Stop Repeating Actions
END-IF
Add 1 to counter
IF (Variable counter(3) >= 60(F) [FALSE]) THEN
Stop Repeating Actions
END-IF
END-REP
Off: Master Bedroom Lightstrip