Add color preset cyan: #4BA

pull/3/head
Amio 2018-06-29 23:21:35 +08:00
rodzic 1b49c2fa26
commit 214fc1f5f4
2 zmienionych plików z 16 dodań i 4 usunięć

Wyświetl plik

@ -15,12 +15,24 @@ Fast, handcraft, pure JavaScript badge generator.
const badgen = require('badgen')
const svgString = badgen({
subject: 'npm',
status: 'v1.2.3',
color: 'blue'
subject: 'npm', // <Text>
status: 'v1.2.3', // <Text>
color: 'blue' // <Color RGB> or <Color Name>
})
```
Available color names:
![](https://badgen.now.sh/badge/color/green/green)
![](https://badgen.now.sh/badge/color/yellow/yellow)
![](https://badgen.now.sh/badge/color/orange/orange)
![](https://badgen.now.sh/badge/color/red/red)
![](https://badgen.now.sh/badge/color/pink/pink)
![](https://badgen.now.sh/badge/color/purple/purple)
![](https://badgen.now.sh/badge/color/blue/blue)
![](https://badgen.now.sh/badge/color/cyan/cyan)
![](https://badgen.now.sh/badge/color/grey/grey)
### Badge Service
https://badgen.now.sh/

Wyświetl plik

@ -7,5 +7,5 @@ module.exports = {
purple: 'A3E',
pink: 'E48',
grey: '999',
black: '000'
cyan: '4BA'
}