@uiengine/cli
Version:
UIengine command line interface.
38 lines (37 loc) • 631 B
JavaScript
module.exports = {
title: 'Colors',
tokens: [
{
type: 'category',
name: 'Brand',
tokens: [
{
type: 'color',
name: 'brandPrimary',
value: 'yellow'
},
{
type: 'color',
name: 'brandSecondary',
value: 'blue'
}
]
},
{
type: 'category',
name: 'Neutral',
tokens: [
{
type: 'color',
name: 'neutralWhite',
value: '#FFF'
},
{
type: 'color',
name: 'neutralBlack',
value: '#000'
}
]
}
]
}