fix(US-06): brighter secondary text, larger small text, all uppercase
This commit is contained in:
parent
dc1d05b1a7
commit
2982751533
1 changed files with 16 additions and 16 deletions
|
|
@ -138,17 +138,17 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
|
||||||
letterSpacing = (-2).sp
|
letterSpacing = (-2).sp
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = "steps / min",
|
text = "STEPS / MIN",
|
||||||
fontSize = 11.sp,
|
fontSize = 13.sp,
|
||||||
fontFamily = JetBrainsMono,
|
fontFamily = JetBrainsMono,
|
||||||
color = FG.copy(alpha = 0.35f),
|
color = FG.copy(alpha = 0.65f),
|
||||||
letterSpacing = 2.sp
|
letterSpacing = 2.sp
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = stepsPerSec,
|
text = stepsPerSec.uppercase(),
|
||||||
fontSize = 11.sp,
|
fontSize = 13.sp,
|
||||||
fontFamily = JetBrainsMono,
|
fontFamily = JetBrainsMono,
|
||||||
color = FG.copy(alpha = 0.25f),
|
color = FG.copy(alpha = 0.5f),
|
||||||
letterSpacing = 1.sp
|
letterSpacing = 1.sp
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -183,16 +183,16 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = "SLOW",
|
text = "SLOW",
|
||||||
fontSize = 10.sp,
|
fontSize = 13.sp,
|
||||||
fontFamily = JetBrainsMono,
|
fontFamily = JetBrainsMono,
|
||||||
color = FG.copy(alpha = 0.35f),
|
color = FG.copy(alpha = 0.65f),
|
||||||
letterSpacing = 2.sp
|
letterSpacing = 2.sp
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = "FAST",
|
text = "FAST",
|
||||||
fontSize = 10.sp,
|
fontSize = 13.sp,
|
||||||
fontFamily = JetBrainsMono,
|
fontFamily = JetBrainsMono,
|
||||||
color = FG.copy(alpha = 0.35f),
|
color = FG.copy(alpha = 0.65f),
|
||||||
letterSpacing = 2.sp
|
letterSpacing = 2.sp
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -231,8 +231,8 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
|
||||||
fontFamily = JetBrainsMono
|
fontFamily = JetBrainsMono
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = label,
|
text = label.uppercase(),
|
||||||
fontSize = 9.sp,
|
fontSize = 10.sp,
|
||||||
fontFamily = JetBrainsMono,
|
fontFamily = JetBrainsMono,
|
||||||
letterSpacing = 1.sp
|
letterSpacing = 1.sp
|
||||||
)
|
)
|
||||||
|
|
@ -250,16 +250,16 @@ fun PacerScreen(viewModel: PacerViewModel, modifier: Modifier = Modifier) {
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = "VOL",
|
text = "VOL",
|
||||||
fontSize = 10.sp,
|
fontSize = 13.sp,
|
||||||
fontFamily = JetBrainsMono,
|
fontFamily = JetBrainsMono,
|
||||||
color = FG.copy(alpha = 0.35f),
|
color = FG.copy(alpha = 0.65f),
|
||||||
letterSpacing = 2.sp
|
letterSpacing = 2.sp
|
||||||
)
|
)
|
||||||
Text(
|
Text(
|
||||||
text = "${(volume * 100).toInt()}%",
|
text = "${(volume * 100).toInt()}%",
|
||||||
fontSize = 10.sp,
|
fontSize = 13.sp,
|
||||||
fontFamily = JetBrainsMono,
|
fontFamily = JetBrainsMono,
|
||||||
color = FG.copy(alpha = 0.35f),
|
color = FG.copy(alpha = 0.65f),
|
||||||
letterSpacing = 2.sp
|
letterSpacing = 2.sp
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue