Beep Sounds
Beep sounds are perfect for notifications, alerts, and feedback in your app. These 24 sounds range from subtle pings to attention-grabbing alerts.
Usage
// Play a beep sound
play ~beep-pop
// Play with volume control (0-100)
play ~beep-alert -volume:80
Available Beep Sounds
Click the play button to preview any sound and copy its tag. You can also click the sound name to copy it.
| Sound | Description | Best For |
|---|---|---|
| Alert notification | Error messages, warnings | |
| Attention grabber | Important notifications | |
| Playful bop | Game feedback, fun interactions | |
| Bright and poppy | Success messages, achievements | |
| Digital glitch | Tech/cyber themed apps | |
| High pitched tone | Subtle notifications | |
| Sustained tone | Loading, processing | |
| Horn-like beep | Alerts, alarms | |
| Metallic ring | Modern UI feedback | |
| Organ-style beep | Musical apps | |
| Piano note | Elegant feedback | |
| Plucked string | Soft notifications | |
| Simple pop | General purpose | |
| Reed instrument | Unique feedback | |
| Rejection/error | Failed actions | |
| Blocked/stopped | Access denied | |
| Scraping sound | Industrial theme | |
| Scratchy texture | Retro/vintage | |
| Sharp string pluck | Quick feedback | |
| Shiny metallic | Premium feel | |
| Tapped surface | Subtle feedback | |
| Wooden timbre | Natural, organic | |
| Warm guitar tone | Friendly, welcoming | |
| Xylophone hit | Playful, musical |
Examples
Notification System
// Different sounds for different notification types
if $notification-type = "error"
play ~beep-rejected
elif $notification-type = "warning"
play ~beep-alert
elif $notification-type = "success"
play ~beep-brightpop
else
play ~beep-pop
end
Loading Feedback
// Play sustained tone while loading
play ~beep-holdtone
load-data
play ~beep-brightpop // Success sound when done