Adds more themes, adds ability to hide unneeded components

This commit is contained in:
Alicia Sykes
2021-04-16 14:29:19 +01:00
parent 7f3e8dd818
commit c5f630849f
12 changed files with 116 additions and 51 deletions

View File

@@ -1,5 +1,7 @@
module.exports = {
defaultTheme: 'Default',
iconSize: 'medium',
layout: 'auto',
defaultTheme: 'default',
builtInThemes: [
'nord',
'nord-frost',
@@ -13,7 +15,15 @@ module.exports = {
'bee',
'raspberry-jam',
'tiger',
'colorful',
'high-contrast-light',
'high-contrast-dark',
],
visibleComponents: {
pageTitle: true,
navigation: true,
searchBar: true,
settings: true,
footer: true,
},
};