Keyboard has white background on iOS 13 when in dark mode. For reference, if this helps speed up implementation: ``` if #available(iOS 13, *) { if (vc.traitCollection.userInterfaceStyle == .dark) { // Make keyboard background dark. } } ```