1.0.1 • Published 9 years ago
aco-reader v1.0.1
aco-reader
Transform .aco files to JSON format.
Install
$ npm install -S aco-readerUsage
const acoReader = require('aco-reader')
acoReader.toJSON('./my-palette.aco', function(err, palette) {
console.log(palette)
})Output
[
{
name: 'A cool color',
hex: '#ff0066'
},
{
name: 'Another cool color',
hex: '#ffbb00'
}
]