Skip to main content

Notification

Configure the notification types as you like
For the icons, check lucide.dev
Config.notification = {
    ["info"] = {
        icon = false,
        colors = {
            backgroundColor = "rgba(3,92,226,0.5)",
            borderColor = "rgba(0,140,255,1)"
        }
    },
    ["success"] = {
        icon = "circle-check",
        colors = {
            backgroundColor = "rgba(0,118,8,0.5)",
            borderColor = "rgba(31,255,46,1)"
        }
    },
    ["warning"] = {
        icon = "triangle-alert",
        colors = {
            backgroundColor = "rgba(118,59,0,0.5)",
            borderColor = "rgba(218,119,6,1)"
        }
    },
    ["error"] = {
        icon = "circle-x",
        colors = {
            backgroundColor = "rgba(118,0,0,0.5)",
            borderColor = "rgba(255,66,66,1)"
        }
    }
}