diff --git a/services/github/github-followers.service.js b/services/github/github-followers.service.js index 5489552dc3b9a..f39bf32cbb8f5 100644 --- a/services/github/github-followers.service.js +++ b/services/github/github-followers.service.js @@ -31,7 +31,7 @@ module.exports = class GithubFollowers extends GithubAuthV3Service { static render({ followers }) { return { message: metric(followers), - color: '4183C4', + color: 'blue', } } diff --git a/services/github/github-followers.tester.js b/services/github/github-followers.tester.js index c0bbfeb7e73c3..c0db38a83915a 100644 --- a/services/github/github-followers.tester.js +++ b/services/github/github-followers.tester.js @@ -6,6 +6,7 @@ const t = (module.exports = require('../tester').createServiceTester()) t.create('Followers').get('/webcaetano.json').expectBadge({ label: 'followers', message: isMetric, + color: 'blue', }) t.create('Followers (user not found)').get('/PyvesB2.json').expectBadge({ diff --git a/services/github/github-forks.service.js b/services/github/github-forks.service.js index 9f59b9766d87d..644f33dbe613b 100644 --- a/services/github/github-forks.service.js +++ b/services/github/github-forks.service.js @@ -47,7 +47,7 @@ module.exports = class GithubForks extends GithubAuthV4Service { static render({ user, repo, forkCount }) { return { message: metric(forkCount), - color: '4183C4', + color: 'blue', link: [ `https://github.com/${user}/${repo}/fork`, `https://github.com/${user}/${repo}/network`, diff --git a/services/github/github-forks.tester.js b/services/github/github-forks.tester.js index 9ebb77bb58e42..9656b806dda09 100644 --- a/services/github/github-forks.tester.js +++ b/services/github/github-forks.tester.js @@ -8,6 +8,7 @@ t.create('Forks') .expectBadge({ label: 'forks', message: isMetric, + color: 'blue', link: [ 'https://github.com/badges/shields/fork', 'https://github.com/badges/shields/network', diff --git a/services/github/github-sponsors.service.js b/services/github/github-sponsors.service.js index c4cfacd98a0a1..443e2cf4aac70 100644 --- a/services/github/github-sponsors.service.js +++ b/services/github/github-sponsors.service.js @@ -42,7 +42,7 @@ module.exports = class GithubSponsors extends GithubAuthV4Service { static render({ count }) { return { message: metric(count), - color: '4183C4', + color: 'blue', } } diff --git a/services/github/github-sponsors.tester.js b/services/github/github-sponsors.tester.js index b00a6c3fcddce..ebe0cd50c1759 100644 --- a/services/github/github-sponsors.tester.js +++ b/services/github/github-sponsors.tester.js @@ -12,6 +12,7 @@ const t = (module.exports = new ServiceTester({ t.create('Sponsors').get('/sponsors/Homebrew.json').expectBadge({ label: 'sponsors', message: isMetric, + color: 'blue', }) t.create('Sponsors (user not found)') diff --git a/services/github/github-watchers.service.js b/services/github/github-watchers.service.js index ee73c6fe69100..84b1797c23f45 100644 --- a/services/github/github-watchers.service.js +++ b/services/github/github-watchers.service.js @@ -45,7 +45,7 @@ module.exports = class GithubWatchers extends GithubAuthV3Service { static render({ watchers, user, repo }) { return { message: metric(watchers), - color: '4183C4', + color: 'blue', link: [ `https://github.com/${user}/${repo}`, `https://github.com/${user}/${repo}/watchers`, diff --git a/services/github/github-watchers.tester.js b/services/github/github-watchers.tester.js index 9409eadf3cbd7..6d58e6ed85b14 100644 --- a/services/github/github-watchers.tester.js +++ b/services/github/github-watchers.tester.js @@ -8,6 +8,7 @@ t.create('Watchers') .expectBadge({ label: 'watchers', message: Joi.number().integer().positive(), + color: 'blue', link: [ 'https://github.com/badges/shields', 'https://github.com/badges/shields/watchers',