dynamically generated css package for github language colors, updated every time when npm run build is executed.
can also be npm installed.
<!-- text color --><linkrel="stylesheet" href="https://unpkg.com/github-lang-css/index.css"><!-- background color; attach "-bg" to the end of reformatted classes --><linkrel="stylesheet" href="https://unpkg.com/github-lang-css/background.css"><!-- {"reformatted-lang": color, ...} --><linkrel="stylesheet" href="https://unpkg.com/github-lang-css/langs.json"><!-- {"raw lang": color, ...} --><linkrel="stylesheet" href="https://unpkg.com/github-lang-css/raw_langs.json">because github language names aren't compatable with css, some replacement must be done:
constdigitToWord=["zero","one","two","three","four","five","six","seven","eight","nine",];constlangFromGithub="...";constcssClass=langFromGithub.replaceAll("+","P").replaceAll("#","-Sharp").replace(/\s/g,"-").replaceAll(".","-").replace(/["'()]/g,"").replace(/^\d/,(match)=>digitToWord[match]);