summaryrefslogtreecommitdiff
path: root/scheme
diff options
context:
space:
mode:
Diffstat (limited to 'scheme')
-rwxr-xr-xscheme/getlightness.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/scheme/getlightness.py b/scheme/getlightness.py
deleted file mode 100755
index 956153e..0000000
--- a/scheme/getlightness.py
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/python3
-
-import sys
-from colorsys import rgb_to_hls
-
-if __name__ == "__main__":
- for arg in sys.argv[1:]:
- print(rgb_to_hls(*tuple(int(arg[i:i+2], 16) for i in (0, 2, 4)))[1])