> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seam.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Toast styles

> Configure transient banners by customizing background, text, accent, and layout.

Styles transient banners shown by components.

```swift theme={null}
public struct Toast {
    public var background: Color
    public var textColor: Color
    public var accentColor: Color
    public var borderColor: Color
    public var cornerRadius: CGFloat
    public var shadowColor: Color
    public var shadowRadius: CGFloat
    public var shadowYOffset: CGFloat
    public var horizontalPadding: CGFloat
    public var verticalPadding: CGFloat
}
```

#### **Example:**

```swift theme={null}
let toast = SeamTheme.Toast.default.with(
    background: Color(UIColor.secondarySystemBackground),
    borderColor: Color(UIColor.separator),
    cornerRadius: 14
)
```
