Since PrimeNG v21 (for Angular v21) a so-called [PassTrough property](https://primeng.org/passthrough) exists that can be used - for example - the following way:
```
<p-select
[pt]="{
label: { style: 'color: red'},
optionLabel: { style: 'color: blue'},
}"
...
/>
```
Via `[pt]` you can inject many things now. Every PrimeNG component documentation page (for example <https://primeng.org/select>) now has a PASSTHROUGH tab with information for that specific component, but if I understand correctly, you can do much more with it than is documented on those pages.
Since PrimeNG v21 (for Angular v21) a so-called [PassTrough property](https://primeng.org/passthrough) exists that can be used - for example - the following way:
```
<p-select
[pt]="{
label: { style: 'font-size: 30px'},
optionLabel: { style: 'font-size: 50px'},
}"
...
/>
```
Via `[pt]` you can inject many things now. Every PrimeNG component documentation page (for example <https://primeng.org/select>) now has a PASSTHROUGH tab with information for that specific component, but if I understand correctly, you can do much more with it than is documented on those pages.