You can add the custom stylesheet after include bootstrap:
<link href="bootstrap.css" rel="stylesheet" type="text/css" />
<link href="mySpecial.css" rel="stylesheet" type="text/css" />
Then, you override the styles you want. So will be something like:
.btn-success {
color: orange;
}
for an ugly orange text green button.