summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/HomePage.dart4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/HomePage.dart b/lib/HomePage.dart
index c583fbf..6487ef5 100644
--- a/lib/HomePage.dart
+++ b/lib/HomePage.dart
@@ -35,7 +35,7 @@ class _HomePageState extends ConsumerState<HomePage> {
return Scaffold(
- backgroundColor: Colors.black87,
+ backgroundColor: Colors.black,
body: OrientationBuilder(
builder: (context, orientation) {
if (orientation == Orientation.landscape) {
@@ -45,7 +45,7 @@ class _HomePageState extends ConsumerState<HomePage> {
width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height,
child: Container(
- color: Colors.black87,
+ color: Colors.black,
),
),