From eb363621ed38d0c54a2a95dac30bcddd3ae08cc6 Mon Sep 17 00:00:00 2001 From: mhokanson Date: Fri, 5 Sep 2025 08:37:08 -0700 Subject: [PATCH] Update default color for Administrator Update the default color for the Administrator window to further differentiate OIE from Mirth Connect. The color was selected from the current OIE logo and is a slightly darker shade of blue than the previous color. Issue: https://github.com/OpenIntegrationEngine/engine/issues/177 Signed-off-by: mhokanson --- server/src/com/mirth/connect/model/ServerSettings.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/com/mirth/connect/model/ServerSettings.java b/server/src/com/mirth/connect/model/ServerSettings.java index f77e03763a..8905f17d64 100644 --- a/server/src/com/mirth/connect/model/ServerSettings.java +++ b/server/src/com/mirth/connect/model/ServerSettings.java @@ -30,7 +30,7 @@ @XStreamAlias("serverSettings") public class ServerSettings extends AbstractSettings implements Serializable, Auditable, Purgable { - public static final Color DEFAULT_COLOR = new Color(0x9EB1C9); + public static final Color DEFAULT_COLOR = new Color(0x2A75B2); public static final String DEFAULT_LOGIN_NOTIFICATION_ENABLED_VALUE = "0"; public static final String DEFAULT_LOGIN_NOTIFICATION_MESSAGE_VALUE = ""; public static final String DEFAULT_ADMINISTRATOR_AUTO_LOGOUT_INTERVAL_ENABLED_VALUE = "0"; @@ -327,3 +327,4 @@ public Map getPurgedProperties() { return purgedProperties; } } +