forked from cybrespace/pinafore
16 lines
199 B
JavaScript
16 lines
199 B
JavaScript
|
const themes = [
|
||
|
{
|
||
|
name: 'default',
|
||
|
label: 'Royal (default)'
|
||
|
},
|
||
|
{
|
||
|
name: 'scarlet',
|
||
|
label: 'Scarlet'
|
||
|
},
|
||
|
{
|
||
|
name: 'hotpants',
|
||
|
label: 'Hotpants'
|
||
|
}
|
||
|
]
|
||
|
|
||
|
export { themes }
|