修改主题色

This commit is contained in:
future
2026-06-10 14:35:16 +08:00
committed by liwentao
parent b12d7cdf25
commit 67c080efce
9 changed files with 155 additions and 37 deletions
@@ -68,7 +68,7 @@ const entries = [
-webkit-backdrop-filter: blur(24px);
margin: 24rpx;
border-radius: 28rpx;
box-shadow: 0 8rpx 32rpx rgba(120, 185, 215, 0.18);
box-shadow: 0 8rpx 32rpx var(--shadow-blue-light);
border: 1rpx solid rgba(255, 255, 255, 0.7);
position: relative;
z-index: 3;
@@ -85,12 +85,12 @@ const entries = [
width: 104rpx;
height: 104rpx;
border-radius: 24rpx;
background: linear-gradient(135deg, #7AB5CC 0%, #9CCFDF 100%);
background: rgba(130, 220, 130, 0.9);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16rpx;
box-shadow: 0 6rpx 20rpx rgba(122, 181, 204, 0.35);
box-shadow: 0 6rpx 20rpx rgba(130, 220, 130, 0.35);
}
.icon-img {
@@ -99,7 +99,7 @@ const entries = [
}
.entry-icon.accent {
background: linear-gradient(135deg, #6BA8C0 0%, #8CC5D5 100%);
background: rgba(130, 220, 130, 0.9);
}
.entry-title {
@@ -111,6 +111,6 @@ const entries = [
.entry-desc {
font-size: 22rpx;
color: #8AABBB;
color: var(--tabbar-text-inactive);
}
</style>