diff --git a/Packages/Status/Sources/Status/Editor/StatusEditorView.swift b/Packages/Status/Sources/Status/Editor/StatusEditorView.swift index 8e87d5c2..fa447f99 100644 --- a/Packages/Status/Sources/Status/Editor/StatusEditorView.swift +++ b/Packages/Status/Sources/Status/Editor/StatusEditorView.swift @@ -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) } diff --git a/Packages/Status/Sources/Status/Row/Subviews/StatusRowContextMenu.swift b/Packages/Status/Sources/Status/Row/Subviews/StatusRowContextMenu.swift index 44592cd9..21aa6084 100644 --- a/Packages/Status/Sources/Status/Row/Subviews/StatusRowContextMenu.swift +++ b/Packages/Status/Sources/Status/Row/Subviews/StatusRowContextMenu.swift @@ -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 }