diff options
Diffstat (limited to 'DomainDig/BatchSweepSummaryView.swift')
| -rw-r--r-- | DomainDig/BatchSweepSummaryView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DomainDig/BatchSweepSummaryView.swift b/DomainDig/BatchSweepSummaryView.swift index 43ffa74..ae69d06 100644 --- a/DomainDig/BatchSweepSummaryView.swift +++ b/DomainDig/BatchSweepSummaryView.swift @@ -32,7 +32,7 @@ struct BatchSweepSummaryView: View { if visibleResults.isEmpty { Text("No domains with changes or warnings") .font(.system(.caption, design: .monospaced)) - .foregroundStyle(.secondary) + .foregroundStyle(Color(.appTextSecondary)) } else { ForEach(visibleResults) { result in if let entry = viewModel.historyEntry(for: result) { @@ -56,7 +56,7 @@ struct BatchSweepSummaryView: View { HStack { Text(label) .font(.system(.caption, design: .monospaced)) - .foregroundStyle(.secondary) + .foregroundStyle(Color(.appTextSecondary)) Spacer() Text(value) .font(.system(.callout, design: .monospaced)) |
