forked from badges/stability-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
38 lines (32 loc) · 756 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
var badges = module.exports = {}
var badge = require('./badge')
badges.deprecated = badge('stability', 'deprecated', {
categoryColor: '#C62914'
, width: 110
, labelWidth: 45
})
badges.experimental = badge('stability', 'experimental', {
categoryColor: '#DD5F0A'
, width: 117
, labelWidth: 45
})
badges.unstable = badge('stability', 'unstable', {
categoryColor: '#E5AE13'
, width: 95
, labelWidth: 45
})
badges.stable = badge('stability', 'stable', {
categoryColor: '#74C614'
, width: 85
, labelWidth: 45
})
badges.frozen = badge('stability', 'frozen', {
categoryColor: '#33C614'
, width: 85
, labelWidth: 45
})
badges.locked = badge('stability', 'locked', {
categoryColor: '#14C6C6'
, width: 85
, labelWidth: 45
})