From 0331ae89628eaa6a418d775924ef4b45f31e346f Mon Sep 17 00:00:00 2001 From: Arturo Manzoli Date: Sat, 23 Nov 2024 08:52:12 -0300 Subject: [PATCH] App interface: Minor UI changes Signed-off-by: Arturo Manzoli --- src/assets/defaults.ts | 2 +- src/stores/appInterface.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/assets/defaults.ts b/src/assets/defaults.ts index af46b6ed8..08ee32a18 100644 --- a/src/assets/defaults.ts +++ b/src/assets/defaults.ts @@ -40,7 +40,7 @@ export const defaultMiniWidgetManagerVars: MiniWidgetManagerVars = { const hostname = window.location.hostname export const defaultBlueOsAddress = 'http://blueos-avahi.local' export const defaultGlobalAddress = !hostname || hostname == 'localhost' ? defaultBlueOsAddress : hostname -export const defaultUIGlassColor = { opacity: 0.8, bgColor: '#4F4F4F1A', fontColor: '#FFFFFF', blur: 25 } +export const defaultUIGlassColor = { opacity: 0.9, bgColor: '#63636354', fontColor: '#FFFFFF', blur: 25 } export const widgetProfiles: Profile[] = [ { name: 'ROV default', diff --git a/src/stores/appInterface.ts b/src/stores/appInterface.ts index cb02058b3..5dd5e3ba4 100644 --- a/src/stores/appInterface.ts +++ b/src/stores/appInterface.ts @@ -14,8 +14,8 @@ export const useAppInterfaceStore = defineStore('responsive', { configModalVisibility: false, videoLibraryVisibility: false, UIGlassEffect: useBlueOsStorage('cockpit-ui-glass-effect', { - opacity: 0.8, - bgColor: '#4F4F4F1A', + opacity: 0.9, + bgColor: '#63636354', fontColor: '#FFFFFF', blur: 25, }),