Commit 37cf87f0 authored by Ian Hickson's avatar Ian Hickson

Pick a default theme brightness

There doesn't seem to be any particular reason for us to not default the brightness to _something_.
parent 8f4db366
......@@ -12,7 +12,7 @@ enum ThemeBrightness { dark, light }
class ThemeData {
ThemeData({
ThemeBrightness brightness,
ThemeBrightness brightness: ThemeBrightness.light,
Map<int, Color> primarySwatch,
Color accentColor,
this.accentColorBrightness: ThemeBrightness.dark,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment