fix: internaldrive.fill icon, ink/inkInverse adaptive colors
Light mode: white disk icon on black bg Dark mode: black disk icon on white bg No green — uses AppTheme.ink + AppTheme.inkInverse throughout. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -23,18 +23,17 @@ struct ConnectView: View {
|
||||
.kerning(1.2)
|
||||
.padding(.top, 44)
|
||||
|
||||
// UGREEN logo mark
|
||||
// NAS logo mark
|
||||
ZStack {
|
||||
RoundedRectangle(cornerRadius: 18, style: .continuous)
|
||||
.fill(Color(red: 0.12, green: 0.64, blue: 0.38))
|
||||
.fill(AppTheme.ink)
|
||||
.frame(width: 72, height: 72)
|
||||
|
||||
Image(systemName: "externaldrive.fill")
|
||||
.font(.system(size: 26, weight: .medium))
|
||||
.foregroundStyle(.white.opacity(0.92))
|
||||
Image(systemName: "internaldrive.fill")
|
||||
.font(.system(size: 28, weight: .medium))
|
||||
.foregroundStyle(AppTheme.inkInverse)
|
||||
}
|
||||
.shadow(color: Color(red: 0.12, green: 0.64, blue: 0.38).opacity(0.3),
|
||||
radius: 12, x: 0, y: 4)
|
||||
.shadow(color: AppTheme.ink.opacity(0.18), radius: 12, x: 0, y: 4)
|
||||
|
||||
// UGreen NAS compatibility badge
|
||||
UGreenCompatibilityBadge()
|
||||
|
||||
Reference in New Issue
Block a user