confOS/.config/fish/functions/latex-color.fish
2024-10-06 20:47:19 +02:00

49 lines
1.4 KiB
Fish

function latex-color --description "Get the LaTeX color from HEX code"
# Declare our arguments
argparse h/help -- $argv
# Get function name
set current_name $(status current-function)
# Check if not enough arguments provided, or help menu
if set -ql _flag_help || test -z $argv[1]
echo -e "Usage: $current_name \"hexcode\""
echo -e " $current_name [-h|--help] - Show this help message"
return 0
end
# Remove '#'
set hex $argv[1]
if string match -qr '^#' -- $hex
set hex (string sub -s 2 $hex)
end
# Check if the length of the hex is valid
if not contains $(string length $hex) $(string split " " "3 4 6 8")
echo "Error: Invalid HEX code"
return 1
end
# Expand 3 hex to 4 hex
if test (string length $hex) -eq 3
set hex $(string join "" $hex 0)
end
# Expand 4 hex to 8 hex
if test (string length $hex) -eq 4
set hex "$(string replace -ar '(.)' '$1$1' $hex)00"
end
# Expand 6 hex to 8 hex
if test (string length $hex) -eq 6
set hex $(string join "" $hex 00)
end
# Convert hex to RGB
set r (math "0x$(string sub -s 1 -l 2 $hex) / 255")
set g (math "0x$(string sub -s 3 -l 2 $hex) / 255")
set b (math "0x$(string sub -s 5 -l 2 $hex) / 255")
set a (math "0x$(string sub -s 7 -l 2 $hex) / 255")
printf "{%.2f, %.2f, %.2f, %.2f}\n" $r $g $b $a
end