Документация определяет параметры цвета: confirmButtonColor
и cancelButtonColor
.
swal({
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!'
}).then((result) => {
if (result.value) {
swal(
'Deleted!',
'Your file has been deleted.',
'success'
)
}
})
Если этого недостаточно, вы также можете применять пользовательские классы CSS, например:
confirmButtonClass: 'btn btn-success',
cancelButtonClass: 'btn btn-danger',