About this section (i'm in love with this section...) : https://backpackforlaravel.com/docs/4.2-dev/base-how-to#custom-colors-for-primary-secondary-success-warning-etc In the example file you add some import at the end ``` @import "node_modules/@digitallyhappy/backstrap/src/scss/_backstrap_miscellaneous"; @import "node_modules/@coreui/coreui/scss/coreui"; @import "node_modules/@digitallyhappy/backstrap/src/scss/_custom"; @import "node_modules/animate.css/source/_base"; @import "node_modules/noty/src/noty"; ``` We discovered that there is a missing needed import ``` @import "node_modules/@digitallyhappy/backstrap/src/scss/_noty"; ``` I didn't create a PR this time because I've no idea of right order of this import. Actually we've inserted after importing `_custom" and it works. Without adding this import, the notification triggered are not colored, styled, sized, etc