Update secondary color to brown

It gives a nicer earthier feel to the app, instead of red, which is a
bit too strong.
This commit is contained in:
Vishesh Handa
2019-01-11 17:26:16 +01:00
parent 1ad2a2cb62
commit d5eaefb849

View File

@ -26,7 +26,7 @@ class JournalApp extends StatelessWidget {
theme: new ThemeData( theme: new ThemeData(
brightness: Brightness.light, brightness: Brightness.light,
primaryColor: Color(0xFF66bb6a), primaryColor: Color(0xFF66bb6a),
accentColor: Color(0xffe64a19), accentColor: Color(0xff6d4c41),
), ),
navigatorObservers: <NavigatorObserver>[observer], navigatorObservers: <NavigatorObserver>[observer],
); );