mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 04:30:10 +00:00
21 lines
537 B
JavaScript
21 lines
537 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'),
|
|
'modern-lancer': require('./themes/modern-lancer/theme.json')
|
|
}
|
|
};
|
|
|
|
}());
|