"prefixColor" dumped to chat, not changing color?Solved

The following partial config file:

"Notification": {
"backupBroadcast": true,
"backupDelay": 15,
"prefix": "BACKUP",
"prefixColor": "lime",
"useBroadcastDelay": true

Results in the server chat displaying the following in white lettering:

<color=lime>BACKUP: Starting server backup in 15 seconds.
<color=lime>Running server backup.
<color=lime>Backup process finished.

I am trying to get the backup messages to show up in lime green. Any suggestions would be welcomed, ty

You'd need to change the color name to a hex color code. Rust doesn't support as many color names as of many months ago.

I can verify that your solution works perfectly! Thank you!

"prefixColor": "#00FF00",

Locked automatically