Hi,
1st I suggest to use child theme/create child theme if you’re still not using it.
Please check this tutorial to have you started https://codex.wordpress.org/Child_Themes
Or you can use any custom css plugin will do.
For the code to change the color of checkout button.
Paste this code on your style.css under your child theme or custom css plugin.
.wc-proceed-to-checkout .button{
background: #000000; /* Please change the color you want */
}
Save your changes.