-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Toggle dark mode #11
Toggle dark mode #11
Conversation
Should be close: #10 |
We need to set the dark mode here as well: https://github.com/outerbase/studio-desktop/blob/master/electron/main.ts#L77
I believe you cannot use localStorage to do it. You need to write it to file. You can check https://github.com/outerbase/studio-desktop/blob/master/electron/file-helper.ts#L5 on how to deal with which path to write. Try to write to Create setting class
Then, you can use ipc to set it from renderer window. |
Let me change it. |
All updated according to suggestion. |
No description provided.