support dark mode

This commit is contained in:
Timi
2025-12-05 12:40:19 +08:00
parent 99eb470625
commit b33ce05d52
39 changed files with 317 additions and 111 deletions

View File

@ -1,7 +1,7 @@
.luggage {
.tips {
color: #777;
color: var(--theme-text-secondary);
margin: .5rem 0;
font-size: 12px;
text-align: center;
@ -19,7 +19,7 @@
flex: 1;
margin: 0;
border: 3rpx solid #CCC;
border: 3rpx solid var(--theme-text-disabled);
position: relative;
overflow: hidden;
box-sizing: border-box;
@ -68,13 +68,13 @@
.add-container {
left: 0;
right: 0;
color: #333;
color: var(--theme-text-primary);
bottom: 0;
display: flex;
padding: 20rpx;
position: fixed;
border-top: 1px solid rgba(0, 0, 0, .1);
background: rgba(240, 240, 240, .8);
border-top: 1px solid var(--theme-border-light);
background: var(--theme-bg-secondary);
box-sizing: border-box;
align-items: center;
padding-bottom: calc(20rpx + env(safe-area-inset-bottom));