github-colors

Github colors for all the programming languages


Keywords
github, colors, python
License
Unlicense
Install
pip install github-colors==2020.12.3

Documentation

Installation

$ [sudo] pip install github-colors

Examples

COLORS dict

>>> import github_colors
>>> github_colors.COLORS
{
    '1C Enterprise': '#814CCC',
    ...
}

get(name,default) (default color is #ccc)

>>> github_colors.get('1c enterprise')
'#814CCC'

>>> github_colors.get('awk','#ccc')
'#ccc'
>>> github_colors.get('not-existing','#ccc')
'#ccc'

readme42.com