From d5eaefb849dd6c31b2337997972ae25b458750c8 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 11 Jan 2019 17:26:16 +0100 Subject: [PATCH] Update secondary color to brown It gives a nicer earthier feel to the app, instead of red, which is a bit too strong. --- lib/app.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.dart b/lib/app.dart index 3a764a0b..73cb5c7f 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -26,7 +26,7 @@ class JournalApp extends StatelessWidget { theme: new ThemeData( brightness: Brightness.light, primaryColor: Color(0xFF66bb6a), - accentColor: Color(0xffe64a19), + accentColor: Color(0xff6d4c41), ), navigatorObservers: [observer], );