色彩调整
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 24s
Docker Build & Deploy / Deploy to Production (push) Successful in 10s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s

This commit is contained in:
孙诚
2026-01-13 17:00:44 +08:00
parent 556fc5af20
commit c5c3b56200
25 changed files with 182 additions and 339 deletions

View File

@@ -108,27 +108,27 @@
/* 业务特定样式:收入、支出、高亮 */
.rich-html-content .income-value {
color: #07c160 !important;
color: var(--van-success-color) !important;
font-weight: 600;
}
.rich-html-content .expense-value {
color: #ee0a24 !important;
color: var(--van-danger-color) !important;
font-weight: 600;
}
.rich-html-content .highlight {
background-color: #fffbe6;
color: #ed6a0c;
background-color: var(--van-orange-light);
color: var(--van-orange-dark);
padding: 2px 6px;
border-radius: 4px;
font-weight: bold;
border: 1px solid #ffe58f;
border: 1px solid var(--van-orange);
margin: 0 2px;
}
/* 暗色模式适配 */
@media (prefers-color-scheme: dark) {
/* @media (prefers-color-scheme: dark) {
.rich-html-content .highlight {
background-color: rgba(255, 243, 205, 0.2);
color: #ffc107;
@@ -156,4 +156,4 @@
.rich-html-content td {
border-bottom: 1px solid #2c2c2c;
}
}
} */