Match storage card font weight to light — consistent with stats strip

36pt semibold rounded → 36pt light monospacedDigit, matching
the thin numeral design language used across all widgets.

Co-Authored-By: Kutesir <kutesir@provoc.ug>
Co-Authored-By: Sentry <sentry@provoc.ug>
This commit is contained in:
Robin Kutesa
2026-05-21 14:41:00 +03:00
parent 91879f2411
commit 54b8ac59be

View File

@@ -998,8 +998,9 @@ struct BackupView: View {
private func storageStat(_ value: String, label: String, color: Color) -> some View { private func storageStat(_ value: String, label: String, color: Color) -> some View {
VStack(spacing: 6) { VStack(spacing: 6) {
Text(value) Text(value)
.font(.system(size: 36, weight: .semibold, design: .rounded)) .font(.system(size: 36, weight: .light))
.foregroundStyle(color) .foregroundStyle(color)
.monospacedDigit()
Text(label) Text(label)
.font(.system(size: 10, weight: .regular, design: .monospaced)) .font(.system(size: 10, weight: .regular, design: .monospaced))
.foregroundStyle(AppTheme.inkQuaternary) .foregroundStyle(AppTheme.inkQuaternary)