Use OSI green instead of blue for repo badge

This commit is contained in:
Stephen Brown II 2021-03-10 13:35:56 -07:00
parent cdb5e9bd3c
commit 55baefa5e0
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function repoLink(repo) {
let repoURL = new URL(repo);
let repoHost = path.basename(repoURL.hostname, path.extname(repoURL.hostname))
if (repoHost.includes(".")) repoHost = path.extname(repoHost).replace(".", "")
return `[![Repo](https://img.shields.io/badge/open-source-blue?style=flat-square&logo=${repoHost})](${repo})`
return `[![Repo](https://img.shields.io/badge/open-source-3DA639?style=flat-square&logo=${repoHost})](${repo})`
}
/**