mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 22:39:18 +01:00
* added support for toggling between new light theme and dark theme. * improved light theme colors * light-theme styles are now scoped and applied in each component/page Co-authored-by: Catalin MUNTEANU <cmunteanu@bitdefender.com>
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
export const DOZZLE_SETTINGS_KEY = "DOZZLE_SETTINGS";
|
|
export const DEFAULT_SETTINGS = {
|
|
search: true,
|
|
size: "medium",
|
|
menuWidth: 15,
|
|
smallerScrollbars: false,
|
|
showTimestamp: true,
|
|
showAllContainers: false,
|
|
lightTheme: false
|
|
};
|