How to change Price font size, weight, or color on Product Page?

Hi @MyCsPiTTa

You can do that by adding this code to Custom CSS in Sales Channels > Online Store > Themes > Customize > Theme settings.

.product .price--large {
    color: red; /* color of price */
    font-size: 2rem; /* font size of price */
    font-weight: 700;  /* font weight of price */
}