Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 396b47b

Browse files
authored
Merge pull request #50 from thfsilvab/master
fix: adjust colors of home widgets to match pihole web ui
2 parents 832f349 + d472bff commit 396b47b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/screens/home/home.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class _HomeState extends State<Home> {
9898
child: HomeTile(
9999
icon: Icons.public,
100100
iconColor: const Color.fromARGB(255, 64, 146, 66),
101-
color: Colors.green,
101+
color: Colors.blue,
102102
label: AppLocalizations.of(context)!.totalQueries,
103103
value: intFormat(statusProvider.getRealtimeStatus!.dnsQueriesToday,Platform.localeName),
104104
),
@@ -111,7 +111,7 @@ class _HomeState extends State<Home> {
111111
child: HomeTile(
112112
icon: Icons.block,
113113
iconColor: const Color.fromARGB(255, 28, 127, 208),
114-
color: Colors.blue,
114+
color: Colors.red,
115115
label: AppLocalizations.of(context)!.queriesBlocked,
116116
value: intFormat(statusProvider.getRealtimeStatus!.adsBlockedToday, Platform.localeName),
117117
),
@@ -137,7 +137,7 @@ class _HomeState extends State<Home> {
137137
child: HomeTile(
138138
icon: Icons.list,
139139
iconColor: const Color.fromARGB(255, 211, 58, 47),
140-
color: Colors.red,
140+
color: Colors.green,
141141
label: AppLocalizations.of(context)!.domainsAdlists,
142142
value: intFormat(statusProvider.getRealtimeStatus!.domainsBeingBlocked, Platform.localeName),
143143
),

0 commit comments

Comments
 (0)