You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This UI is defaulting the User Interface to dark mode if the user is a first time user. I need know if there is any configuration in cyclos or during the build time where we can change the default theme to light and disable the setting for end user to ever change it again. As of now the settings page seems to be hardcoded to have the toggle. In the seetings page. Only option i think i have is to remove the menu item from the code altogether so that user is not able access the theme toggle. But for defailt theme to dark ... Somehow i am not able to understand from where it is coming.
The text was updated successfully, but these errors were encountered:
On the first user access to the frontend, we get from the system settings.
Browsers implement this using the prefers-color-scheme CSS property.
The corresponding theme (light or dark) It is then persisted in the local storage, and restored from there on next page views.
If you're experiencing dark by default is because the system (Windows, Mac, Linux) is set to a dark theme. We assume it is the user preference to use a dark theme.
We have never considered disabling the option, because this is an overall trend in software systems to support a dark mode.
I understand this that this is default behavior and it is expected from the system. But in terms of highly customizable system like cyclos, not only in terms of features and functionality but its capabilities of controlling themes and style. It is so comfortable and advance that a tiny non controllable feature hurts ... Like a spot on white shirt
So again
It can be a simple as a angular environment.js entry which disables the reading of that automatic value at runtime and remove the option for user to switch theme from dashboard and settings menu. However you can chose how you implement this feature.
This UI is defaulting the User Interface to dark mode if the user is a first time user. I need know if there is any configuration in cyclos or during the build time where we can change the default theme to light and disable the setting for end user to ever change it again. As of now the settings page seems to be hardcoded to have the toggle. In the seetings page. Only option i think i have is to remove the menu item from the code altogether so that user is not able access the theme toggle. But for defailt theme to dark ... Somehow i am not able to understand from where it is coming.
The text was updated successfully, but these errors were encountered: