I've integrated the Porto Admin Theme into my website, which can be found at
This theme utilizes PNotify for notifications, available at:
I'm looking to customize the notification colors in a light pastel scheme when choosing "Bootstrap 4" or Bootstrap 3 on the Pnotify site, instead of the current darker colors. How can I achieve this?
function notify (message, type){
new PNotify({
title: false,
text: message,
type: type,
addclass: 'ui-pnotify-no-icon',
icon: false,
buttons: {
sticker: false
}
});
}
Above is the code snippet I am using