Skip to content

Instantly share code, notes, and snippets.

@treeform
Created June 2, 2020 16:21
Show Gist options
  • Save treeform/30eac7e122dc8009cfd174a55b8bc720 to your computer and use it in GitHub Desktop.
Save treeform/30eac7e122dc8009cfd174a55b8bc720 to your computer and use it in GitHub Desktop.
import chroma
template fill(s: string) =
echo "parsed", s
let color = parseHtmlColor(s)
echo color
template fill(s: static string) =
const color = parseHtmlColor(s)
echo color
var runTime = "#BADA55"
const compileTime = "#FFAADD"
fill(runTime)
fill(compileTime)
fill("#F00BA4")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment