[![Build Status](https://travis-ci.org/PolymerElements/paper-toast.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-toast) _[Demo and API Docs](https://elements.polymer-project.org/elements/paper-toast)_ ##<paper-toast> Material design: [Snackbards & toasts](https://www.google.com/design/spec/components/snackbars-toasts.html) `paper-toast` provides a subtle notification toast. Only one `paper-toast` will be visible on screen. Use `opened` to show the toast: Example: ```html ``` Also `open()` or `show()` can be used to show the toast: Example: ```html Open Toast ... openToast: function() { this.$.toast.open(); } ``` Set `duration` to 0, a negative number or Infinity to persist the toast on screen: Example: ```html Show more ``` ### Styling The following custom properties and mixins are available for styling: | Custom property | Description | Default | | --- | --- | --- | | `--paper-toast-background-color` | The paper-toast background-color | `#323232` | | `--paper-toast-color` | The paper-toast color | `#f1f1f1` |