From 23922fde138c023e5c3142ea481f20d8fbddc838 Mon Sep 17 00:00:00 2001 From: Clay Tercek <30105080+claytercek@users.noreply.github.com> Date: Tue, 20 Jan 2026 10:45:44 -0500 Subject: [PATCH] fix `scrollbar_thumb.background` deprecation new property is named `scrollbar.thumb.background` --- src/theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.js b/src/theme.js index 825405d..3451d70 100644 --- a/src/theme.js +++ b/src/theme.js @@ -195,9 +195,9 @@ export function getTheme({ themeKey, name, type }) { "scrollbar.thumb.border": tokens['borderColor/transparent'], "scrollbar.thumb.hover_background": alpha('bgColor/neutral-emphasis', type === 'light' ? 0.2 : 0.4), + "scrollbar.thumb.background": alpha('bgColor/neutral-emphasis', type === 'light' ? 0.1 : 0.3), "scrollbar.track.background": tokens['bgColor/transparent'], "scrollbar.track.border": tokens['borderColor/transparent'], - "scrollbar_thumb.background": alpha('bgColor/neutral-emphasis', type === 'light' ? 0.1 : 0.3), "search.match_background": alpha("base/color/yellow/1", 0.3),