From 4bf741e79d220b7e25426685fa49de948b269bd2 Mon Sep 17 00:00:00 2001 From: notthistrain <940457524@qq.com> Date: Fri, 8 Aug 2025 11:13:44 +0000 Subject: [PATCH 1/2] fix(toolbox): dataView darkmode --- src/theme/dark.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/theme/dark.ts b/src/theme/dark.ts index 0b43606232..de17a14800 100644 --- a/src/theme/dark.ts +++ b/src/theme/dark.ts @@ -103,6 +103,16 @@ const theme = { toolbox: { iconStyle: { borderColor: color.accent50 + }, + feature: { + dataView: { + backgroundColor: color.background, + textColor: color.primary, + textareaColor: color.background, + textareaBorderColor: color.border, + buttonColor: color.accent50, + buttonTextColor: color.neutral00 + } } }, tooltip: { From 4c3f305c2f705f6491d2bf143e62f74eb2ef8cba Mon Sep 17 00:00:00 2001 From: notthistrain <87973979+notthistrain@users.noreply.github.com> Date: Tue, 12 Aug 2025 09:15:05 +0800 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20property=20shorthand=EF=BC=8Cupdat?= =?UTF-8?q?e=20src/theme/dark.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Zhongxiang Wang --- src/theme/dark.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/dark.ts b/src/theme/dark.ts index de17a14800..3da1abcec3 100644 --- a/src/theme/dark.ts +++ b/src/theme/dark.ts @@ -106,7 +106,7 @@ const theme = { }, feature: { dataView: { - backgroundColor: color.background, + backgroundColor: backgroundColor, textColor: color.primary, textareaColor: color.background, textareaBorderColor: color.border,