fix: 暖色调修改。

This commit is contained in:
tianyongbao
2026-03-04 00:23:01 +08:00
parent d924185c8e
commit f5b0338072
10 changed files with 68 additions and 68 deletions

View File

@@ -18,7 +18,7 @@
<text class="item-label">{{ item.label }}</text>
</view>
<view class="item-right">
<uni-link v-if="item.isLink" :href="item.value" :text="item.displayText" showUnderLine="false" color="#667eea"></uni-link>
<uni-link v-if="item.isLink" :href="item.value" :text="item.displayText" showUnderLine="false" color="#E8841A"></uni-link>
<text v-else class="item-value">{{ item.value }}</text>
</view>
</view>
@@ -44,7 +44,7 @@ const infoList = computed(() => [
label: '版本信息',
value: `v${version}`,
displayText: `v${version}`,
gradient: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
gradient: 'linear-gradient(135deg, #E8841A 0%, #F5A623 100%)',
isLink: false
},
{
@@ -95,7 +95,7 @@ page {
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background: linear-gradient(135deg, #FFF3D6 0%, #FFCC6E 100%);
position: relative;
overflow: hidden;
@@ -117,7 +117,7 @@ page {
.logo-image {
width: 140rpx;
height: 140rpx;
border-radius: 28rpx;
border-radius: 80rpx;
box-shadow: 0 12rpx 40rpx rgba(0, 0, 0, 0.2);
background: #ffffff;
padding: 16rpx;
@@ -129,21 +129,21 @@ page {
right: -10rpx;
width: 40rpx;
height: 40rpx;
background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
background: linear-gradient(135deg, #E8841A 0%, #F5A623 100%);
border-radius: 20rpx;
border: 4rpx solid #667eea;
border: 4rpx solid #F5A623;
}
}
.app-name {
color: #ffffff;
color: #8B4500;
font-size: 36rpx;
font-weight: 700;
margin-bottom: 8rpx;
}
.app-slogan {
color: rgba(255, 255, 255, 0.8);
color: rgba(139, 69, 0, 0.8);
font-size: 26rpx;
}
}