diff --git a/code/modules/clothing/masks/voice.dm b/code/modules/clothing/masks/voice.dm
index 39669f44c0..c30e1ea48b 100644
--- a/code/modules/clothing/masks/voice.dm
+++ b/code/modules/clothing/masks/voice.dm
@@ -15,7 +15,7 @@
set src in usr
changer.active = !changer.active
- usr << "\blue You [changer.active ? "enable" : "disable"] the voice-changing module in \the [src]."
+ usr << "You [changer.active ? "enable" : "disable"] the voice-changing module in \the [src]."
/obj/item/clothing/mask/gas/voice/verb/Set_Voice(name as text)
set category = "Object"
@@ -24,7 +24,7 @@
var/voice = sanitize(copytext(name,1,MAX_MESSAGE_LEN))
if(!voice || !length(voice)) return
changer.voice = voice
- usr << "\blue You are now mimicking [changer.voice]."
+ usr << "You are now mimicking [changer.voice]."
/obj/item/clothing/mask/gas/voice/New()
..()