Files
OpenMediaCenter/src/GlobalInfos.js

17 lines
281 B
JavaScript
Raw Normal View History

class GlobalInfos {
#darktheme = true;
2020-07-27 21:14:56 +02:00
isDarkTheme() {
2020-07-27 21:14:56 +02:00
return this.#darktheme;
};
2020-07-27 21:14:56 +02:00
enableDarkTheme(enable = true){
this.#darktheme = enable;
}
}
const StaticInfos = new GlobalInfos();
//Object.freeze(StaticInfos);
export default StaticInfos;