tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 0cdb254af13418c56f612696d1efd7d83fa52cd9
parent e5b3d1cc24a94c32db7e002d2cce5cd2370a52c3
Author: Gabriel Luong <gabriel.luong@gmail.com>
Date:   Fri,  7 Nov 2025 15:01:22 +0000

Bug 1995236 - Correct the private theme M3 color token in colors.xml r=android-reviewers,007

- Fixed the incorrect values for the M3 private color tokens in colors.xml
- "android:colorBackground" will now use the correct private background color for the recent app preview. https://searchfox.org/firefox-main/rev/cb52781342cc905eda923d009fc0b678f3a8c8c6/mobile/android/fenix/app/src/main/res/values/styles.xml#355

Figma: https://www.figma.com/design/MjufE1X5fvkxZ0YneX4kRd/Android-Library--2025-?node-id=64745-6585&m=dev

Differential Revision: https://phabricator.services.mozilla.com/D271353

Diffstat:
Mmobile/android/fenix/app/src/main/res/values/colors.xml | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mobile/android/fenix/app/src/main/res/values/colors.xml b/mobile/android/fenix/app/src/main/res/values/colors.xml @@ -218,13 +218,13 @@ <color name="fx_mobile_private_on_tertiary">@color/photonDarkGrey90</color> <color name="fx_mobile_private_tertiary_container">@color/photonPink80</color> <color name="fx_mobile_private_on_tertiary_container">@color/photonLightGrey05</color> - <color name="fx_mobile_private_background">@color/photonLightGrey10</color> - <color name="fx_mobile_private_on_background">@color/photonDarkGrey90</color> + <color name="fx_mobile_private_background">#FF342B4A</color> + <color name="fx_mobile_private_on_background">@color/photonLightGrey05</color> <color name="fx_mobile_private_surface">#FF342B4A</color> <color name="fx_mobile_private_on_surface">@color/photonLightGrey05</color> <color name="fx_mobile_private_surface_variant">#FF413857</color> <color name="fx_mobile_private_on_surface_variant">@color/photonLightGrey40</color> - <color name="fx_mobile_private_surface_inverse">@color/photonLightGrey10</color> + <color name="fx_mobile_private_surface_inverse">@color/photonLightGrey40</color> <color name="fx_mobile_private_on_surface_inverse">@color/photonDarkGrey90</color> <color name="fx_mobile_private_error">@color/photonRed20</color> <color name="fx_mobile_private_on_error">@color/photonDarkGrey90</color>