From b4e6786d9a06a6808b8caceeb06e1569c45cdfc8 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Mon, 7 Oct 2019 19:24:52 +0200 Subject: [PATCH] Improve the dark theme Avoid the green color when in the dark theme. It was clashing quite a bit. Lets just go with complete dark shades for now. It's still really missing something, though I'm not sure what. --- lib/themes.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/themes.dart b/lib/themes.dart index c3c92d49..bc5d87ed 100644 --- a/lib/themes.dart +++ b/lib/themes.dart @@ -11,9 +11,7 @@ class Themes { static final dark = ThemeData( brightness: Brightness.dark, - primaryColor: Color(0xFF66bb6a), - primaryColorLight: Color(0xFF98ee99), - primaryColorDark: Color(0xFF338a3e), - accentColor: Color(0xff6d4c41), + primaryColor: Color(0xff212121), + accentColor: Color(0xff689f38), ); }