mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-22 08:10:10 +00:00
20 lines
468 B
JavaScript
20 lines
468 B
JavaScript
|
/**
|
||
|
Mount individual themes onto the module object for convenience.
|
||
|
@module index.js
|
||
|
@license MIT. See LICENSE.md for details.
|
||
|
*/
|
||
|
|
||
|
(function(){
|
||
|
|
||
|
module.exports = {
|
||
|
themes: {
|
||
|
awesome: require('./themes/awesome/theme.json'),
|
||
|
basis: require('./themes/basis/theme.json'),
|
||
|
compact: require('./themes/compact/theme.json'),
|
||
|
modern: require('./themes/modern/theme.json'),
|
||
|
positive: require('./themes/positive/theme.json')
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}());
|