dashboard/src/components/themeManager.js
Bastian Meissner c2d5a90df5 Added production support for themes
also some css improvements
2020-05-22 00:28:02 +02:00

35 lines
698 B
JavaScript

const defaultTheme = {
label: 'Classic',
value: 0,
mainColor: '#000000',
accentColor: '#1e272e',
backgroundColor: '#ffffff'
};
const setTheme = theme => {
localStorage.setItem('theme', theme);
window.location.reload();
};
const resetTheme = () => {
localStorage.removeItem('theme');
};
const getTheme = () => {
let selectedTheme = defaultTheme;
if (
localStorage.getItem('theme') &&
localStorage.getItem('theme') !== undefined
) {
selectedTheme = JSON.parse(localStorage.getItem('theme'));
}
return selectedTheme;
};
const selectedTheme = getTheme();
export { setTheme, resetTheme };
export default selectedTheme;