I know that you can apply a color variation to PixelSearch, but can you apply a color variation to PixelGetColor?, Basically I have this and need to setup a color variation somewhere in it. Func _Start() $Position = MouseGetPos() $coord = PixelGetColor ($Position[0], $Position[1]) If $coord = $Color Then Do nothing Endif WEnd EndFunc Func _Color() $MOUSEGET = MouseGetPos() $Color = PixelGetColor ($MOUSEGET[0], $MOUSEGET[1]) TrayTip("Chosen HEX Color", Hex($Color, 6), 1) E