aco-reader
v1.0.1
Published
Transform aco files to JSON format
Downloads
25
Maintainers
Readme
aco-reader
Transform .aco
files to JSON format.
Install
$ npm install -S aco-reader
Usage
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'
}
]