I’m having trouble changing the default Mirador Viewer them from light to dark. I’ve changed the setting in the mirador.min.js file, but nothing seems to happen. Using the current version of the module. Any suggestions? Found this on Github, but where in the module files does this go?
To use the dark theme by default, add the following to your settings:
var miradorInstance = Mirador.viewer({
id: ‘mirador’,
selectedTheme: ‘dark’
});
Thanks very much! I had to change it in two files (settings.js and mirador.min.js) because I had only changed it in the settings file, and the other was overriding it.