From 46dd8536144938af709c274d0a12929c52ad4a83 Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 17 Jul 2026 03:07:30 +0100 Subject: [PATCH] fix(ui): heavier scrim over the bright web5/server backdrop Co-Authored-By: Claude Fable 5 --- neode-ui/src/views/Dashboard.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/neode-ui/src/views/Dashboard.vue b/neode-ui/src/views/Dashboard.vue index 77ba6832..1a02d722 100644 --- a/neode-ui/src/views/Dashboard.vue +++ b/neode-ui/src/views/Dashboard.vue @@ -52,9 +52,11 @@ aria-hidden="true" /> - +
@@ -190,6 +192,10 @@ const backgroundImage = computed(() => { return 'bg-home.webp' }) +// bg-web5.jpg (web5 + server sections) is bright — the scrim overlay deepens +// while it's showing so light text keeps its contrast. +const isWeb5Bg = computed(() => backgroundImage.value === 'bg-web5.jpg') + const isDarkRoute = computed(() => { const p = route.path return p.includes('/dashboard/web5') ||