fix(US-06): brighter secondary text, larger small text, all uppercase

This commit is contained in:
Jeena 2026-03-09 12:19:09 +00:00
parent dc1d05b1a7
commit 2982751533

View file

@ -138,17 +138,17 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
letterSpacing = (-2).sp
)
Text(
text = "steps / min",
fontSize = 11.sp,
text = "STEPS / MIN",
fontSize = 13.sp,
fontFamily = JetBrainsMono,
color = FG.copy(alpha = 0.35f),
color = FG.copy(alpha = 0.65f),
letterSpacing = 2.sp
)
Text(
text = stepsPerSec,
fontSize = 11.sp,
text = stepsPerSec.uppercase(),
fontSize = 13.sp,
fontFamily = JetBrainsMono,
color = FG.copy(alpha = 0.25f),
color = FG.copy(alpha = 0.5f),
letterSpacing = 1.sp
)
}
@ -183,16 +183,16 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
) {
Text(
text = "SLOW",
fontSize = 10.sp,
fontSize = 13.sp,
fontFamily = JetBrainsMono,
color = FG.copy(alpha = 0.35f),
color = FG.copy(alpha = 0.65f),
letterSpacing = 2.sp
)
Text(
text = "FAST",
fontSize = 10.sp,
fontSize = 13.sp,
fontFamily = JetBrainsMono,
color = FG.copy(alpha = 0.35f),
color = FG.copy(alpha = 0.65f),
letterSpacing = 2.sp
)
}
@ -231,8 +231,8 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
fontFamily = JetBrainsMono
)
Text(
text = label,
fontSize = 9.sp,
text = label.uppercase(),
fontSize = 10.sp,
fontFamily = JetBrainsMono,
letterSpacing = 1.sp
)
@ -250,16 +250,16 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
) {
Text(
text = "VOL",
fontSize = 10.sp,
fontSize = 13.sp,
fontFamily = JetBrainsMono,
color = FG.copy(alpha = 0.35f),
color = FG.copy(alpha = 0.65f),
letterSpacing = 2.sp
)
Text(
text = "${(volume * 100).toInt()}%",
fontSize = 10.sp,
fontSize = 13.sp,
fontFamily = JetBrainsMono,
color = FG.copy(alpha = 0.35f),
color = FG.copy(alpha = 0.65f),
letterSpacing = 2.sp
)
}