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.
This commit is contained in:
Vishesh Handa
2019-10-07 19:24:52 +02:00
parent c2d7841b32
commit b4e6786d9a

View File

@ -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),
);
}