From afeb27b446b26f38502aae81dcdd8a69f3bdd6a4 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Thu, 26 Dec 2024 16:13:53 +1300 Subject: [PATCH] update default profile icon colours --- src/frontend/components/profile/ProfilePage.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/components/profile/ProfilePage.vue b/src/frontend/components/profile/ProfilePage.vue index 296553d..bd2c0b5 100644 --- a/src/frontend/components/profile/ProfilePage.vue +++ b/src/frontend/components/profile/ProfilePage.vue @@ -184,8 +184,8 @@ export default { config() { // update ui when config is updated this.iconName = this.config.lxmf_user_icon_name; - this.iconForegroundColour = this.config.lxmf_user_icon_foreground_colour || "#000000"; - this.iconBackgroundColour = this.config.lxmf_user_icon_background_colour || "#FFFFFF"; + this.iconForegroundColour = this.config.lxmf_user_icon_foreground_colour || "#6b7280"; + this.iconBackgroundColour = this.config.lxmf_user_icon_background_colour || "#e5e7eb"; }, }, }