mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 07:19:29 -05:00
9 lines
193 B
Python
Executable File
9 lines
193 B
Python
Executable File
#!/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])
|