UNPKG

generator-nitro

Version:

Yeoman generator for the nitro frontend framework

24 lines (20 loc) 289 B
'use strict'; /** * Nitro Themes Config */ const config = { themes: [ { id: 'light', name: 'Light Theme', isDefault: true, isLight: true, }, { id: 'dark', name: 'Dark Theme', isDark: true, }, ], }; module.exports = config.themes;