Fix dark mode in firefox.

This commit is contained in:
Tom Alexander 2024-07-16 20:13:20 -04:00
parent 22d90ae79b
commit 9029508c58
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -27,9 +27,14 @@ firefox_config:
dom.battery.enabled: false
# Disable that websites can get notifications if you copy, paste, or cut something from a web page, and it lets them know which part of the page had been selected.
dom.event.clipboardevents.enabled: false
# Resist fingerprinting
privacy.resistFingerprinting: true
# Isolates all browser identifier sources (e.g. cookies) to the first party domain, with the goal of preventing tracking across different domains.
privacy.firstparty.isolate: true
# Do not preload URLs that auto-complete in the address bar.
browser.urlbar.speculativeConnect.enabled: false
# Do not resist fingerprinting because that tells websites to use light mode.
# https://bugzilla.mozilla.org/show_bug.cgi?id=1732114
privacy.resistFingerprinting: true
# Instead, enable fingerprinting protection, which allows configuring an override.
privacy.fingerprintingProtection: true
# Allow sending dark mode preference to websites.
privacy.fingerprintingProtection.overrides: "+AllTargets,-CSSPrefersColorScheme"