├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── LICENSE ├── README.md ├── colors.md ├── dist ├── 11-10-2016 │ ├── colors.json │ └── extensions.json ├── 13-2-2025 │ ├── colors.json │ └── extensions.json ├── 13-7-2017 │ ├── colors.json │ └── extensions.json ├── 14-1-2016 │ ├── colors.json │ └── extensions.json ├── 15-9-2015 │ ├── colors.json │ └── extensions.json ├── 17-5-2015 │ ├── colors.json │ └── extensions.json ├── 17-7-2016 │ ├── colors.json │ └── extensions.json ├── 17-8-2017 │ ├── colors.json │ └── extensions.json ├── 18-2-2018 │ ├── colors.json │ └── extensions.json ├── 19-1-2015 │ └── github-colors.json ├── 20-3-2017 │ ├── colors.json │ └── extensions.json ├── 23-3-2017 │ ├── colors.json │ └── extensions.json ├── 24-12-2017 │ ├── colors.json │ └── extensions.json ├── 25-5-2016 │ ├── colors.json │ └── extensions.json ├── 26-4-2016 │ ├── colors.json │ └── extensions.json ├── 3-1-2019 │ ├── colors.json │ └── extensions.json ├── 3-12-2015 │ ├── colors.json │ └── extensions.json ├── 6-5-2015 │ └── github-colors.json ├── 6-6-2016 │ ├── colors.json │ └── extensions.json ├── 7-9-2021 │ ├── colors.json │ └── extensions.json ├── 8-9-2017 │ ├── colors.json │ └── extensions.json └── 9-8-2020 │ ├── colors.json │ └── extensions.json ├── example └── index.js ├── lib ├── colors.json ├── extensions.json └── index.js ├── package.json └── scripts └── main.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/README.md -------------------------------------------------------------------------------- /colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/colors.md -------------------------------------------------------------------------------- /dist/11-10-2016/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/11-10-2016/colors.json -------------------------------------------------------------------------------- /dist/11-10-2016/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/11-10-2016/extensions.json -------------------------------------------------------------------------------- /dist/13-2-2025/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/13-2-2025/colors.json -------------------------------------------------------------------------------- /dist/13-2-2025/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/13-2-2025/extensions.json -------------------------------------------------------------------------------- /dist/13-7-2017/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/13-7-2017/colors.json -------------------------------------------------------------------------------- /dist/13-7-2017/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/13-7-2017/extensions.json -------------------------------------------------------------------------------- /dist/14-1-2016/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/14-1-2016/colors.json -------------------------------------------------------------------------------- /dist/14-1-2016/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/14-1-2016/extensions.json -------------------------------------------------------------------------------- /dist/15-9-2015/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/15-9-2015/colors.json -------------------------------------------------------------------------------- /dist/15-9-2015/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/15-9-2015/extensions.json -------------------------------------------------------------------------------- /dist/17-5-2015/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/17-5-2015/colors.json -------------------------------------------------------------------------------- /dist/17-5-2015/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/17-5-2015/extensions.json -------------------------------------------------------------------------------- /dist/17-7-2016/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/17-7-2016/colors.json -------------------------------------------------------------------------------- /dist/17-7-2016/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/17-7-2016/extensions.json -------------------------------------------------------------------------------- /dist/17-8-2017/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/17-8-2017/colors.json -------------------------------------------------------------------------------- /dist/17-8-2017/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/17-8-2017/extensions.json -------------------------------------------------------------------------------- /dist/18-2-2018/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/18-2-2018/colors.json -------------------------------------------------------------------------------- /dist/18-2-2018/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/18-2-2018/extensions.json -------------------------------------------------------------------------------- /dist/19-1-2015/github-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/19-1-2015/github-colors.json -------------------------------------------------------------------------------- /dist/20-3-2017/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/20-3-2017/colors.json -------------------------------------------------------------------------------- /dist/20-3-2017/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/20-3-2017/extensions.json -------------------------------------------------------------------------------- /dist/23-3-2017/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/23-3-2017/colors.json -------------------------------------------------------------------------------- /dist/23-3-2017/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/23-3-2017/extensions.json -------------------------------------------------------------------------------- /dist/24-12-2017/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/24-12-2017/colors.json -------------------------------------------------------------------------------- /dist/24-12-2017/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/24-12-2017/extensions.json -------------------------------------------------------------------------------- /dist/25-5-2016/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/25-5-2016/colors.json -------------------------------------------------------------------------------- /dist/25-5-2016/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/25-5-2016/extensions.json -------------------------------------------------------------------------------- /dist/26-4-2016/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/26-4-2016/colors.json -------------------------------------------------------------------------------- /dist/26-4-2016/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/26-4-2016/extensions.json -------------------------------------------------------------------------------- /dist/3-1-2019/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/3-1-2019/colors.json -------------------------------------------------------------------------------- /dist/3-1-2019/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/3-1-2019/extensions.json -------------------------------------------------------------------------------- /dist/3-12-2015/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/3-12-2015/colors.json -------------------------------------------------------------------------------- /dist/3-12-2015/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/3-12-2015/extensions.json -------------------------------------------------------------------------------- /dist/6-5-2015/github-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/6-5-2015/github-colors.json -------------------------------------------------------------------------------- /dist/6-6-2016/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/6-6-2016/colors.json -------------------------------------------------------------------------------- /dist/6-6-2016/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/6-6-2016/extensions.json -------------------------------------------------------------------------------- /dist/7-9-2021/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/7-9-2021/colors.json -------------------------------------------------------------------------------- /dist/7-9-2021/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/7-9-2021/extensions.json -------------------------------------------------------------------------------- /dist/8-9-2017/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/8-9-2017/colors.json -------------------------------------------------------------------------------- /dist/8-9-2017/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/8-9-2017/extensions.json -------------------------------------------------------------------------------- /dist/9-8-2020/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/9-8-2020/colors.json -------------------------------------------------------------------------------- /dist/9-8-2020/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/dist/9-8-2020/extensions.json -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/example/index.js -------------------------------------------------------------------------------- /lib/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/lib/colors.json -------------------------------------------------------------------------------- /lib/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/lib/extensions.json -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/package.json -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/github-colors/HEAD/scripts/main.js --------------------------------------------------------------------------------