feat: update theme colors.

This commit is contained in:
2021-09-27 00:14:48 +08:00
parent fdba64e748
commit 92a2e4c365
5 changed files with 49 additions and 40 deletions
+2
View File
@@ -2,4 +2,6 @@ import 'package:flutter/material.dart';
var darkTheme = ThemeData.dark().copyWith(
primaryColor: Colors.grey,
scaffoldBackgroundColor: Color(0xff252525),
backgroundColor: Color(0xff282828),
);
+3 -1
View File
@@ -2,4 +2,6 @@ import 'package:flutter/material.dart';
var lightTheme = ThemeData.light().copyWith(
primaryColor: Colors.blue,
);
scaffoldBackgroundColor: Color(0xfff8f8f8),
backgroundColor: Color(0xffffffff),
);