Fix colors

This commit is contained in:
Thomas Ricouard 2023-12-15 20:13:50 +01:00
parent 98c732e6fb
commit 8f31e34e1d
2 changed files with 4 additions and 3 deletions

View file

@ -74,7 +74,7 @@ public struct StatusEditorView: View {
.scrollPosition(id: $scrollID, anchor: .top)
.animation(.bouncy(duration: 0.3), value: editorFocusState)
.animation(.bouncy(duration: 0.3), value: followUpSEVMs)
.background(Color.primaryBackground)
.background(theme.primaryBackgroundColor)
.safeAreaInset(edge: .bottom) {
StatusEditorAutoCompleteView(viewModel: focusedSEVM)
}

View file

@ -16,6 +16,7 @@ struct StatusRowContextMenu: View {
@Environment(CurrentInstance.self) private var currentInstance
@Environment(StatusDataController.self) private var statusDataController
@Environment(QuickLook.self) private var quickLook
@Environment(Theme.self) private var theme
var viewModel: StatusRowViewModel
@Binding var showTextForSelection: Bool
@ -296,7 +297,7 @@ struct SelectTextView: View {
}
}
}
.background(Color.primaryBackground)
.background(Theme.shared.primaryBackgroundColor)
.navigationTitle("status.action.select-text")
.navigationBarTitleDisplayMode(.inline)
}
@ -318,7 +319,7 @@ struct SelectableText: UIViewRepresentable {
textView.isEditable = false
textView.attributedText = attributedText
textView.textColor = UIColor(Color.label)
textView.backgroundColor = UIColor(Color.primaryBackground)
textView.backgroundColor = UIColor(Theme.shared.primaryBackgroundColor)
return textView
}