Change your system accent colors dynamically based on your wallpaper. Adapt your GNOME Shell, Adwaita apps, adw-gtk3, and folder/app icons like a chameleon.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-X-004 warning
extensions should avoid synchronous file IO in shell code
Shell code should avoid synchronous file IO APIs like `GLib.file_get_contents()` and `Gio.File.load_contents()`.
utils/themeUtils.js:149
mainFile.load_contents(null)
EGO-L-004 warning
main loop sources should be removed in disable()
Main loop sources assigned in `enable()` are missing matching removals in `disable()` or its helper methods.
extension.js:563
this._restoreTimeout = GLib.timeout_add(
GLib.PRIORITY_DEFAULT,
3000,
() => {
this._restoreTimeout = null;
if (this._a11ySettings?.get_boolean("high-contrast") !== hc) {
this._a11ySettings?.set_boolean("high-contrast", hc);
}