Change color for "read mode"-button

Hello everyone,

I have a problem with changing the color of the “read more”-button in the blog overview as shown here: http://www.sabine-schollas.de/category/reisen/

I have already tried a few options found online, for example:
body .btn-default,
body .label-default{
background-color: #eaba6b;
border-color: #eaba6b;
}

It would be great if you know another options.
Thank you for an answer and your patience with newbie questions like mine here.

Sabine

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*change read more color */
.post-content .more-link {
    background: #eaba6b;
    color: #fffff;
}

Best regards,
Support.