Missing Theme Options

I’ve noticed a couple of missing theme setting that I’ve had to include custom CSS for, and it would be useful to have them as declarative options:

Table Titles:

.nx-editor-header-heading

Page Height: (when using page footers, I seem to always need to insert this CSS, but there’s currently no theme setting)

.nx-page-content{
    min-height: 200vh;
}

Table Summaries: (odd rows for table summaries inside drawers don’t seem to respect the single setting currently available)

.table.nx-skootable-data>tbody>tr:nth-child(odd) td {
    background: #d8d8d8;
}