Cogoport / cogo-toast

Beautiful, Zero Configuration, Toast Messages for React. Only ~ 4kb gzip, with styles and icons
https://cogoport.github.io/cogo-toast
MIT License
673 stars 1 forks source link

Suggestion: add a black type #31

Closed zhaoyao91 closed 5 years ago

zhaoyao91 commented 5 years ago

see https://material.io/components/snackbars/#

sometimes we may popup some toast to sligtly give user some info, but not trying to catch too much attention.

anmdotdev commented 5 years ago

@zhaoyao91 Hey, this can be done by extending the CSS. You can change the styles of the toast by modifying the ct-toast class in the css file of your project.

.ct-toast {
  background: #333;
  color: #fff;
}