From 4147f3b1347cbf492346e34c62d9610d7742e7f8 Mon Sep 17 00:00:00 2001 From: James Ives Date: Mon, 12 May 2025 12:52:19 -0400 Subject: [PATCH 1/2] style(status): attach CSS value to status messages --- code/core/src/manager/utils/status.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/core/src/manager/utils/status.tsx b/code/core/src/manager/utils/status.tsx index 421f79720801..e9c3c5ad27ea 100644 --- a/code/core/src/manager/utils/status.tsx +++ b/code/core/src/manager/utils/status.tsx @@ -45,13 +45,13 @@ export const statusMapping: Record , - '#A15C20', + 'var(--status-value-warning, #A15C20)', ], ['status-value:error']: [ , - 'brown', + 'var(--status-value-error, brown)', ], }; From 2cc4972903fe398f0e3099ec24766150e8898580 Mon Sep 17 00:00:00 2001 From: James Ives Date: Mon, 12 May 2025 12:53:21 -0400 Subject: [PATCH 2/2] Update status.tsx --- code/core/src/manager/utils/status.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/core/src/manager/utils/status.tsx b/code/core/src/manager/utils/status.tsx index e9c3c5ad27ea..bb7ad59dce1a 100644 --- a/code/core/src/manager/utils/status.tsx +++ b/code/core/src/manager/utils/status.tsx @@ -45,13 +45,13 @@ export const statusMapping: Record , - 'var(--status-value-warning, #A15C20)', + 'var(--status-value-color-warning, #A15C20)', ], ['status-value:error']: [ , - 'var(--status-value-error, brown)', + 'var(--status-value-color-error, brown)', ], };