With Angular14 I was able to define the mat-tooltips background color via
$theme: (
    color: (
        ...
        background: (
           ...,
            tooltip: red
        )
    )
)
@include mat.all-component-colors($theme);
Now a property named color.background.tooltip even gets generated by calling mat.define-light-theme but isn't applied. What has changed here?