我正在使用一个主题,Porto Admin Theme;http://preview.oklerthemes.com/porto-admin/3.0.0/ui-elements-notifications.html
这个主题使用 PNotify 来传递通知:https ://sciactive.com/pnotify/
当您在上面列出的 Pnotify 链接上选择“Bootstrap 4”(或 Bootstrap 3)时,我想以这种浅色柔和配色方案发出通知,而不是使用深色难看的颜色。我怎样才能做到这一点?
function notify (message, type){
new PNotify({
title: false,
text: message,
type: type,
addclass: 'ui-pnotify-no-icon',
icon: false,
buttons: {
sticker: false
}
});
}
有我的代码