change font weight for tooltips

This commit is contained in:
Henry Hiles 2026-07-21 20:57:58 -04:00
commit 34ddd6d32b
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -17,7 +17,10 @@ extension SchemeToTheme on ColorScheme {
backgroundColor: surfaceContainerLow, backgroundColor: surfaceContainerLow,
), ),
tooltipTheme: .new( tooltipTheme: .new(
textStyle: textTheme.labelLarge?.copyWith(fontSize: 16), textStyle: textTheme.labelLarge?.copyWith(
fontSize: 16,
fontWeight: .w600,
),
padding: .all(8), padding: .all(8),
decoration: BoxDecoration( decoration: BoxDecoration(
color: surfaceContainerHighest, color: surfaceContainerHighest,