From a46e34c56c30d5c840ac17446c11e67991611812 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 20 Dec 2023 14:47:33 +0100 Subject: fix: Adjust colors of app menu and dashboard Those elements are shown directly on the background which has the `color-primary`, so they need to use `color-primary-text` instead of `color-primary-element-text` for guranteed contrast. Signed-off-by: Ferdinand Thiessen --- apps/dashboard/src/DashboardApp.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/dashboard/src/DashboardApp.vue b/apps/dashboard/src/DashboardApp.vue index ffdf368cb2c..733ce104569 100644 --- a/apps/dashboard/src/DashboardApp.vue +++ b/apps/dashboard/src/DashboardApp.vue @@ -465,7 +465,8 @@ export default { background-attachment: fixed; > h2 { - color: var(--color-primary-element-text); + // this is shown directly on the background which has `color-primary`, so we need `color-primary-text` + color: var(--color-primary-text); text-align: center; font-size: 32px; line-height: 130%; -- cgit v1.2.3