@@ -15,74 +15,74 @@ public data class DebugPanelTypographyTokens(
1515 /* * TopAppBar title. */
1616 val titleLarge : TextStyle = TextStyle (
1717 fontWeight = FontWeight .Medium ,
18- fontSize = 16 .sp,
19- lineHeight = 24 .sp,
18+ fontSize = 20 .sp,
19+ lineHeight = 28 .sp,
2020 letterSpacing = 0.sp,
2121 ),
2222 /* * Section headers, group names. */
2323 val titleMedium : TextStyle = TextStyle (
2424 fontWeight = FontWeight .Medium ,
25- fontSize = 14 .sp,
26- lineHeight = 20 .sp,
27- letterSpacing = 0.1 .sp,
25+ fontSize = 16 .sp,
26+ lineHeight = 24 .sp,
27+ letterSpacing = 0.15 .sp,
2828 ),
2929 /* * Card titles, server names. */
3030 val titleSmall : TextStyle = TextStyle (
3131 fontWeight = FontWeight .Medium ,
32- fontSize = 14 .sp,
33- lineHeight = 20 .sp,
32+ fontSize = 15 .sp,
33+ lineHeight = 22 .sp,
3434 letterSpacing = 0.1.sp,
3535 ),
3636 /* * Primary body text. */
3737 val bodyLarge : TextStyle = TextStyle (
3838 fontWeight = FontWeight .Normal ,
39- fontSize = 14 .sp,
40- lineHeight = 20 .sp,
41- letterSpacing = 0.25 .sp,
39+ fontSize = 16 .sp,
40+ lineHeight = 24 .sp,
41+ letterSpacing = 0.5 .sp,
4242 ),
4343 /* * Secondary body text, config values. */
4444 val bodyMedium : TextStyle = TextStyle (
4545 fontWeight = FontWeight .Normal ,
46- fontSize = 13 .sp,
47- lineHeight = 18 .sp,
46+ fontSize = 14 .sp,
47+ lineHeight = 20 .sp,
4848 letterSpacing = 0.25.sp,
4949 ),
50- /* * Technical values (URLs, keys) — compact monospace. */
50+ /* * Technical values (URLs, keys) — monospace. */
5151 val bodySmall : TextStyle = TextStyle (
5252 fontWeight = FontWeight .Normal ,
53- fontSize = 12 .sp,
54- lineHeight = 16 .sp,
53+ fontSize = 13 .sp,
54+ lineHeight = 18 .sp,
5555 letterSpacing = 0.4.sp,
5656 fontFamily = MonoFontFamily ,
5757 ),
58- /* * Tab labels, chip text. */
58+ /* * Tab labels, chip text, button labels . */
5959 val labelLarge : TextStyle = TextStyle (
6060 fontWeight = FontWeight .Medium ,
61- fontSize = 12 .sp,
62- lineHeight = 16 .sp,
61+ fontSize = 14 .sp,
62+ lineHeight = 20 .sp,
6363 letterSpacing = 0.1.sp,
6464 ),
6565 /* * Badges, source indicators. */
6666 val labelMedium : TextStyle = TextStyle (
6767 fontWeight = FontWeight .Medium ,
68- fontSize = 11 .sp,
68+ fontSize = 12 .sp,
6969 lineHeight = 16.sp,
7070 letterSpacing = 0.5.sp,
7171 ),
7272 /* * Section headers (uppercase), overline text. */
7373 val labelSmall : TextStyle = TextStyle (
7474 fontWeight = FontWeight .Medium ,
75- fontSize = 10 .sp,
76- lineHeight = 14 .sp,
75+ fontSize = 11 .sp,
76+ lineHeight = 16 .sp,
7777 letterSpacing = 1.sp,
7878 ),
7979)
8080
8181internal val DarkDebugPanelTypographyTokens = DebugPanelTypographyTokens (
8282 bodySmall = TextStyle (
8383 fontWeight = FontWeight .Normal ,
84- fontSize = 12 .sp,
85- lineHeight = 16 .sp,
84+ fontSize = 13 .sp,
85+ lineHeight = 18 .sp,
8686 letterSpacing = 0.4 .sp,
8787 fontFamily = MonoFontFamily ,
8888 color = BaseColors .Neutral80 ,
0 commit comments