From 1f6c5d9782d5bda73b8bf76c7e1b61394f3f6e80 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Thu, 13 Jun 2024 13:14:44 +0530 Subject: [PATCH] [auth] Change primary button color --- auth/lib/ui/components/models/button_type.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/lib/ui/components/models/button_type.dart b/auth/lib/ui/components/models/button_type.dart index 8b9647c07f..2122769d63 100644 --- a/auth/lib/ui/components/models/button_type.dart +++ b/auth/lib/ui/components/models/button_type.dart @@ -33,7 +33,7 @@ enum ButtonType { Color defaultButtonColor(EnteColorScheme colorScheme) { if (isPrimary) { - return colorScheme.primary500; + return colorScheme.primary400; } if (isSecondary) { return colorScheme.fillFaint;