iOS Settings app dark mode matching colors

I have a UITableViewController with a grouped table view. No matter what I try, I can't match dark mode colors of native Settings app of iOS 14. I tried the following:

  self.tableView.backgroundColor = UIColor.systemGroupedBackground

And in cellForItemAtIndexPath, I set

cell.backgroundColor = UIColor.secondarySystemGroupedBackground

This matches colors for light mode but not for dark mode.

iOS Settings app dark mode matching colors
 
 
Q