Skip to content

Commit

Permalink
Use blue
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Jan 29, 2023
1 parent 72da52f commit 559b7cb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Sources/PulseUI/Features/Console/ConsoleView-macos.swift
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private struct FilterPopoverToolbarButton: View {
var body: some View {
Button(action: { isPresented.toggle() }, label: {
Image(systemName: isPresented ? "line.horizontal.3.decrease.circle.fill" : "line.horizontal.3.decrease.circle")
.foregroundColor(isPresented ? .accentColor : .secondary)
.foregroundColor(isPresented ? .blue : .secondary)
})
.help("Toggle Filters Panel (⌥⌘F)")
.popover(isPresented: $isPresented, arrowEdge: .top) {
Expand All @@ -152,7 +152,7 @@ private struct ConsoleToolbarModePickerButton: View {
var body: some View {
Button(action: { mode = (mode == .tasks ? .all : .tasks) }) {
Image(systemName: mode == .tasks ? "arrow.down.circle.fill" : "arrow.down.circle")
.foregroundColor(mode == .tasks ? Color.accentColor : Color.secondary)
.foregroundColor(mode == .tasks ? Color.blue : Color.secondary)
}
.help("Automatically Scroll to Recent Messages (⇧⌘N)")
.onChange(of: mode) { viewModel.mode = $0 }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ struct ConsoleFiltersView: View {
Button(action: { searchCriteriaViewModel.isOnlyErrors.toggle() }) {
Image(systemName: searchCriteriaViewModel.isOnlyErrors ? "exclamationmark.octagon.fill" : "exclamationmark.octagon")
.font(.system(size: 20))
.foregroundColor(searchCriteriaViewModel.isOnlyErrors ? .red : .accentColor)
.foregroundColor(searchCriteriaViewModel.isOnlyErrors ? .red : .blue)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct ConsoleSearchTimePeriodCell: View {
}
.buttonStyle(.plain)
.padding(.top, 4)
.foregroundColor(.accentColor)
.foregroundColor(.blue)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct ConsoleSearchSectionHeader: View {
.disabled(isDefault)
Button(action: { isEnabled.toggle() }) {
Image(systemName: isEnabled ? "checkmark.circle.fill" : "circle")
.foregroundColor(isDefault ? .secondary : .accentColor)
.foregroundColor(isDefault ? .secondary : .blue)
}
.disabled(isDefault)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct ConsoleSearchContextMenu: View {
} label: {
Image(systemName: "ellipsis.circle")
.font(.system(size: 20))
.foregroundColor(.accentColor)
.foregroundColor(.blue)
}
}
}
Expand Down

0 comments on commit 559b7cb

Please sign in to comment.