Fix text color for light mode

This commit is contained in:
vishnukvmd 2022-08-11 20:20:53 +05:30
parent 313faacc98
commit c3b0e7d141

View file

@ -355,7 +355,7 @@ extension CustomColorScheme on ColorScheme {
: const Color.fromRGBO(30, 30, 30, 1.0);
Color get searchResultsCountTextColor => brightness == Brightness.light
? const Color.fromRGBO(180, 180, 180, 1)
? const Color.fromRGBO(80, 80, 80, 1)
: const Color.fromRGBO(150, 150, 150, 1);
}