mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-14 05:52:51 +00:00
Changed some colors
This commit is contained in:
parent
7caa464b5b
commit
842e81495e
23 changed files with 89 additions and 90 deletions
|
@ -165,8 +165,8 @@ class _BootstrapDnsScreenState extends State<BootstrapDnsScreen> {
|
|||
child: Center(
|
||||
child: Text(
|
||||
AppLocalizations.of(context)!.noBootstrapDns,
|
||||
style: const TextStyle(
|
||||
color: Colors.grey,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
fontSize: 16
|
||||
),
|
||||
),
|
||||
|
|
|
@ -90,9 +90,9 @@ class _DnsSettingsWidgetState extends State<DnsSettingsWidget> {
|
|||
Text(
|
||||
AppLocalizations.of(context)!.loadingDnsConfig,
|
||||
textAlign: TextAlign.center,
|
||||
style: const TextStyle(
|
||||
style: TextStyle(
|
||||
fontSize: 22,
|
||||
color: Colors.grey,
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
),
|
||||
)
|
||||
],
|
||||
|
@ -171,9 +171,9 @@ class _DnsSettingsWidgetState extends State<DnsSettingsWidget> {
|
|||
Text(
|
||||
AppLocalizations.of(context)!.dnsConfigNotLoaded,
|
||||
textAlign: TextAlign.center,
|
||||
style: const TextStyle(
|
||||
style: TextStyle(
|
||||
fontSize: 22,
|
||||
color: Colors.grey,
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
),
|
||||
)
|
||||
],
|
||||
|
|
|
@ -196,8 +196,8 @@ class _PrivateReverseDnsServersScreenState extends State<PrivateReverseDnsServer
|
|||
child: Text(
|
||||
"${AppLocalizations.of(context)!.reverseDnsDefault}:\n\n${defaultReverseResolvers.map((item) => item).join(', ').toString().replaceAll(RegExp(r'\(|\)'), '')}",
|
||||
textAlign: TextAlign.center,
|
||||
style: const TextStyle(
|
||||
color: Colors.grey,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
fontSize: 16
|
||||
),
|
||||
),
|
||||
|
@ -264,8 +264,8 @@ class _PrivateReverseDnsServersScreenState extends State<PrivateReverseDnsServer
|
|||
child: Text(
|
||||
AppLocalizations.of(context)!.noServerAddressesAdded,
|
||||
textAlign: TextAlign.center,
|
||||
style: const TextStyle(
|
||||
color: Colors.grey,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
fontSize: 16
|
||||
),
|
||||
),
|
||||
|
|
|
@ -173,8 +173,8 @@ class _UpstreamDnsScreenState extends State<UpstreamDnsScreen> {
|
|||
child: Center(
|
||||
child: Text(
|
||||
AppLocalizations.of(context)!.noUpstreamDns,
|
||||
style: const TextStyle(
|
||||
color: Colors.grey,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
fontSize: 16
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue