Fixed the brightness calculation
diff --git a/Tools/pynche/StripViewer.py b/Tools/pynche/StripViewer.py
index 3997393..5c38c0e 100644
--- a/Tools/pynche/StripViewer.py
+++ b/Tools/pynche/StripViewer.py
@@ -231,7 +231,7 @@
 	    self.__leftarrow.move_to(-100)
 	# and set the chip's outline
         brightness = ColorDB.triplet_to_brightness(rgbtuple)
-	if brightness <= 0.5:
+	if brightness <= 128:
 	    outline = 'white'
 	else:
 	    outline = 'black'