summaryrefslogtreecommitdiff
path: root/DomainDig/BatchSweepSummaryView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'DomainDig/BatchSweepSummaryView.swift')
-rw-r--r--DomainDig/BatchSweepSummaryView.swift4
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))