tor-browser

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

commit e1becde5a12a97840e2d0f673b88c1c64e018a16
parent 84386d4e9762a83bc3069615122437ff36d321d3
Author: iorgamgabriel <iorgamgabriel@yahoo.com>
Date:   Tue, 14 Oct 2025 13:36:27 +0000

Bug 1985717 - Update inverseSurface color. r=calu

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

Diffstat:
Mmobile/android/android-components/components/compose/base/src/main/java/mozilla/components/compose/base/theme/AcornColors.kt | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mobile/android/android-components/components/compose/base/src/main/java/mozilla/components/compose/base/theme/AcornColors.kt b/mobile/android/android-components/components/compose/base/src/main/java/mozilla/components/compose/base/theme/AcornColors.kt @@ -989,7 +989,7 @@ fun acornDarkColorScheme(): ColorScheme = darkColorPalette.toM3ColorScheme( secondaryContainer = Color(0xFF4B3974), tertiaryContainer = PhotonColors.Pink80, surface = PhotonColors.DarkGrey60, - inverseSurface = PhotonColors.LightGrey10, + inverseSurface = PhotonColors.LightGrey40, errorContainer = PhotonColors.Red80, outline = PhotonColors.LightGrey80, outlineVariant = PhotonColors.DarkGrey05, @@ -1011,7 +1011,7 @@ fun acornLightColorScheme(): ColorScheme = lightColorPalette.toM3ColorScheme( secondaryContainer = Color(0xFFE6E0F5), tertiaryContainer = PhotonColors.Pink05, surface = PhotonColors.LightGrey10, - inverseSurface = PhotonColors.DarkGrey60, + inverseSurface = PhotonColors.DarkGrey05, errorContainer = PhotonColors.Red05, outline = PhotonColors.LightGrey90, outlineVariant = PhotonColors.LightGrey30, @@ -1033,7 +1033,7 @@ fun acornPrivateColorScheme(): ColorScheme = privateColorPalette.toM3ColorScheme secondaryContainer = Color(0xFF4B3974), tertiaryContainer = PhotonColors.Pink80, surface = Color(0xFF342B4A), - inverseSurface = PhotonColors.LightGrey10, + inverseSurface = PhotonColors.LightGrey40, errorContainer = PhotonColors.Red80, outline = PhotonColors.LightGrey80, outlineVariant = PhotonColors.DarkGrey05,