How can I change the color of my checkout button to match the add to cart button?

That black box is the checkout button. How do i make it match the add to cart button?

Or were can i edit the box so i can play around with some styles?

Thanks in advance for any help

Hi @Synosa welcome to the shopify community,

please place below code into your theme customzer or base.css file

1- Online theme > edit code > base.css file OR

2- Online Theme > Customize

form#cart-notification-form button[name=checkout] {
    background-color: #FFA7E4 !important;
}

Thanks