From 448baba2c17e8309c431c8fea3a8887081d8d87c Mon Sep 17 00:00:00 2001 From: nocode Date: Mon, 20 Jul 2026 18:23:53 +0200 Subject: [PATCH] feat(announcement): add announcement_theme configuration option Add new configuration option to control the announcement border color theme. Supports two theme options: - "blue": blue border color - "white": white border color (default) This allows customization of the announcement appearance without code modification. --- lua/bladw_announcement/shared/sh_config.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/bladw_announcement/shared/sh_config.lua b/lua/bladw_announcement/shared/sh_config.lua index 4b6a2fa..964a81d 100644 --- a/lua/bladw_announcement/shared/sh_config.lua +++ b/lua/bladw_announcement/shared/sh_config.lua @@ -4,6 +4,7 @@ BladW.Announcement.Conf = BladW.Announcement.Conf or {} BladW.Announcement.Conf = { announcement_style = "simple", -- "simple" ou "loader" + announcement_theme = "white", -- couleur des contours extérieurs : "blue" ou "white" announcement_duration = 10, -- durée d'affichage en secondes announcement_max_length = 80, -- max de caractères pour le message announcement_sound = "announce.mp3", -- son à l'apparition ("" = rien), fichier dans sound/ | ex : garrysmod/content_downloaded.wav