优化搜索框样式,优化任务列表,环境变量等相关页面使用体验

This commit is contained in:
jyuesong
2022-06-07 18:28:38 +08:00
parent c7824c920b
commit 9759caf9b8
64 changed files with 1030 additions and 520 deletions

View File

@@ -69,7 +69,7 @@ class ThemeViewModel extends ChangeNotifier {
secondary: _primaryColor,
primary: _primaryColor,
),
scaffoldBackgroundColor: const Color(0xfff5f5f5),
scaffoldBackgroundColor: const Color(0xffffffff),
inputDecorationTheme: InputDecorationTheme(
labelStyle: TextStyle(
color: _primaryColor,
@@ -223,6 +223,8 @@ abstract class ThemeColors {
Color tabBarColor();
Color blackAndWhite();
Color pinColor();
Color buttonBgColor();
@@ -241,6 +243,11 @@ class LightThemeColors extends ThemeColors {
return const Color(0xffF7F7F7);
}
@override
Color blackAndWhite() {
return Colors.white;
}
@override
Map<String, TextStyle> codeEditorTheme() {
return qinglongLightTheme;
@@ -288,6 +295,11 @@ class DartThemeColors extends ThemeColors {
return qinglongDarkTheme;
}
@override
Color blackAndWhite() {
return Colors.black;
}
@override
Color descColor() {
return const Color(0xff999999);