labels

$ tclsh << 'EOF'
set fileName "colours.txt"
set fileHandle [open $fileName r]
set fileContent [read $fileHandle]
close $fileHandle
set colorMap [dict create {*}$fileContent]
set outputList [list]
dict for {text hex} $colorMap {
set cleanHex [string trimleft $hex "#"]
scan $cleanHex "%2x%2x%2x" r g b
lappend outputList "\u001b\[38;2;$r;$g;${b}m$text\u001b\[0m"
}
puts "# Gemini 3.5 generated this code."
puts [join $outputList ", "]
exit
EOF
# Gemini 3.5 generated this code.
Awk, Csharp, Elisp, Haskell, Java, Julia, Python, Scheme, TeX, TypeScript
$

                 

$ Rscript -e 'cat("\033[38;2;25;140;231m", version$nickname, "\033[0m\n")'
 Because it was There
$