From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001
From: wwf <yearningwang@iqtogether.com>
Date: 星期三, 04 六月 2025 15:17:49 +0800
Subject: [PATCH] 初始化

---
 app/components/app/configuration/config-prompt/confirm-add-var/index.tsx |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/app/components/app/configuration/config-prompt/confirm-add-var/index.tsx b/app/components/app/configuration/config-prompt/confirm-add-var/index.tsx
index 413f73f..922f8bb 100644
--- a/app/components/app/configuration/config-prompt/confirm-add-var/index.tsx
+++ b/app/components/app/configuration/config-prompt/confirm-add-var/index.tsx
@@ -39,18 +39,22 @@
       }}>
       <div
         ref={mainContentRef}
-        className='w-[420px] rounded-xl bg-components-panel-bg p-6'
+        className='w-[420px] rounded-xl bg-gray-50 p-6'
         style={{
           boxShadow: '0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03)',
         }}
       >
         <div className='flex items-start space-x-3'>
           <div
-            className='flex h-10 w-10 shrink-0 items-center justify-center rounded-xl border border-components-card-border bg-components-card-bg-alt shadow-lg'
+            className='shrink-0 flex items-center justify-center h-10 w-10 rounded-xl border border-gray-100'
+            style={{
+              backgroundColor: 'rgba(255, 255, 255, 0.9)',
+              boxShadow: '0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03)',
+            }}
           >{VarIcon}</div>
           <div className='grow-1'>
-            <div className='text-sm font-medium text-text-primary'>{t('appDebug.autoAddVar')}</div>
-            <div className='mt-[15px] flex max-h-[66px] flex-wrap space-x-1 overflow-y-auto px-1'>
+            <div className='text-sm font-medium text-gray-900'>{t('appDebug.autoAddVar')}</div>
+            <div className='flex flex-wrap mt-[15px] max-h-[66px] overflow-y-auto px-1 space-x-1'>
               {varNameArr.map(name => (
                 <VarHighlight key={name} name={name} />
               ))}

--
Gitblit v1.8.0