From 7fc7d365adafe69495cc79b57cb3b2086d1167cc Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Thu, 30 Jan 2025 11:41:18 +0530 Subject: [PATCH] [mob] Fix color --- mobile/lib/ui/account/two_factor_recovery_page.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mobile/lib/ui/account/two_factor_recovery_page.dart b/mobile/lib/ui/account/two_factor_recovery_page.dart index 1b9a4fd624..8c106025b5 100644 --- a/mobile/lib/ui/account/two_factor_recovery_page.dart +++ b/mobile/lib/ui/account/two_factor_recovery_page.dart @@ -1,9 +1,8 @@ -import 'dart:ui'; - import 'package:flutter/material.dart'; import "package:photos/generated/l10n.dart"; import "package:photos/models/account/two_factor.dart"; import 'package:photos/services/user_service.dart'; +import "package:photos/theme/ente_theme.dart"; import 'package:photos/utils/dialog_util.dart'; class TwoFactorRecoveryPage extends StatefulWidget { @@ -102,7 +101,8 @@ class _TwoFactorRecoveryPageState extends State { style: TextStyle( decoration: TextDecoration.underline, fontSize: 12, - color: Colors.white.withOpacity(0.9), + color: + getEnteColorScheme(context).textBase.withOpacity(0.9), ), ), ),