Automatically change theme styles when dark mode is enabled or disabled.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Please don't store any instance of objects in a property in the default class you are exporting (line 15 `prefs.js`) that won't allow the garbage collector to do its job after window close: [EGO Review Guidelines: Destroy](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#destroy-all-objects) If you don't want to make it local to `fillPreferencesWindow()` function, you can clean up on: ```js window.connect('close-request', () => { this._settings = null; }); ```