Are the new Theme options supposed to match Potatoqualitee's examples?

The samples here GitHub - potatoqualitee/psu-themes: Themes for PowerShell Universal doesnt seem to match what is displayed when selecting that theme

vs

the logic for changing theme being this:

New-UDSelect -Label 'Theme' -Option {
        (Get-UDTheme)| Sort-Object | ForEach-Object {
            New-UDSelectOption -Name $_ -Value $_
        }
    } -OnChange {
        Set-UDTheme -Name $EventData
    }
Product: PowerShell Universal
Version: 3.4.4