Changed some colors

This commit is contained in:
Juan Gilsanz Polo 2023-01-29 21:52:37 +01:00
parent 7caa464b5b
commit 842e81495e
23 changed files with 89 additions and 90 deletions

View file

@ -162,9 +162,9 @@ class _CustomRulesListState extends State<CustomRulesList> {
const SizedBox(height: 30),
Text(
AppLocalizations.of(context)!.loadingFilters,
style: const TextStyle(
style: TextStyle(
fontSize: 22,
color: Colors.grey,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
)
],
@ -205,9 +205,9 @@ class _CustomRulesListState extends State<CustomRulesList> {
AppLocalizations.of(context)!.noBlackLists,
textAlign: TextAlign.center,
overflow: TextOverflow.ellipsis,
style: const TextStyle(
style: TextStyle(
fontSize: 24,
color: Colors.grey
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
),
),
@ -251,9 +251,9 @@ class _CustomRulesListState extends State<CustomRulesList> {
const SizedBox(height: 30),
Text(
AppLocalizations.of(context)!.filtersNotLoaded,
style: const TextStyle(
style: TextStyle(
fontSize: 22,
color: Colors.grey,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
)
],

View file

@ -87,9 +87,9 @@ class _FiltersListState extends State<FiltersList> {
const SizedBox(height: 30),
Text(
AppLocalizations.of(context)!.loadingFilters,
style: const TextStyle(
style: TextStyle(
fontSize: 22,
color: Colors.grey,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
)
],
@ -130,9 +130,9 @@ class _FiltersListState extends State<FiltersList> {
? AppLocalizations.of(context)!.noBlackLists
: AppLocalizations.of(context)!.noWhiteLists,
textAlign: TextAlign.center,
style: const TextStyle(
style: TextStyle(
fontSize: 24,
color: Colors.grey
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
),
const SizedBox(height: 30),
@ -175,9 +175,9 @@ class _FiltersListState extends State<FiltersList> {
const SizedBox(height: 30),
Text(
AppLocalizations.of(context)!.filtersNotLoaded,
style: const TextStyle(
style: TextStyle(
fontSize: 22,
color: Colors.grey,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
)
],