refactor: change the theme color scheme

This commit is contained in:
2025-10-28 20:26:10 +08:00
parent bd817279db
commit a05bd23766
12 changed files with 158 additions and 41 deletions

View File

@@ -7,14 +7,25 @@
.input-panel .ant-input-outlined,
.input-panel .ant-input {
background: rgba(255,255,255,0.04);
color: #e5e7eb;
background: var(--bg-card);
color: var(--text-primary);
border: 1px solid var(--border);
min-height: 180px; /* 提升基础高度,配合 autoSize 更宽裕 */
}
.input-panel .ant-input::placeholder { color: var(--placeholder); }
.input-panel .ant-input:focus,
.input-panel .ant-input-focused {
border-color: var(--color-primary-600);
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.input-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
}
}
.input-actions .ant-btn-text { color: var(--text-secondary); }
.input-actions .ant-btn-text:hover { color: var(--color-primary-600); }