From e5cfe3aa137609068df027d40c45042135328d51 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 10 Jan 2026 18:47:50 +0100 Subject: [PATCH] fix(button): fix button text color to #ffffff Fixes regression introduced in cac2690fd6b6492c8e8f46688a4257c9e09acd26 --- frontend/src/components/input/Button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/input/Button.vue b/frontend/src/components/input/Button.vue index 5301acd4b..ccb38fe01 100644 --- a/frontend/src/components/input/Button.vue +++ b/frontend/src/components/input/Button.vue @@ -75,7 +75,7 @@ const variantClass = computed(() => VARIANT_CLASS_MAP[variant.value]) .button { // Button text must stay white regardless of theme, so we use a fixed value // instead of var(--white) which changes in dark mode. - --button-text-color: #fff; + --button-text-color: #ffffff; // Base structure (replaces Bulma's .button) display: inline-flex;