From 265472ef729d99047d9cb78f51f059000a3c804e Mon Sep 17 00:00:00 2001 From: Aarav Sareen <96787824+arvsrn@users.noreply.github.com> Date: Fri, 7 Aug 2026 12:11:00 +0530 Subject: [PATCH] fix(ui): use tokens for button loading state (#40884) --- packages/ui/src/v2/components/button-v2.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/v2/components/button-v2.css b/packages/ui/src/v2/components/button-v2.css index 531efe9f811..20a8855503f 100644 --- a/packages/ui/src/v2/components/button-v2.css +++ b/packages/ui/src/v2/components/button-v2.css @@ -195,9 +195,9 @@ /* Loading */ [data-component="button-v2"][data-variant="loading"] { - background: #f2f2f2; + background: var(--v2-background-bg-layer-02); color: var(--v2-text-text-base); - box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 0 0 0.5px var(--v2-border-border-muted); cursor: default; pointer-events: none; }