added foreground color for text in tooltip

This commit is contained in:
2026-08-09 00:29:05 +05:00
parent 253373d47e
commit 7c5675f69f
6 changed files with 56 additions and 19 deletions
+6 -3
View File
@@ -21,9 +21,12 @@
<Border.Background>
<SolidColorBrush Color="{Binding Settings.BackgroundColor}" />
</Border.Background>
<TextBlock Foreground="White"
FontWeight="SemiBold"
<TextBlock FontWeight="SemiBold"
FontSize="{Binding Settings.FontSize}"
Text="{Binding ShortName}" />
Text="{Binding ShortName}">
<TextBlock.Foreground>
<SolidColorBrush Color="{Binding Settings.ForegroundColor}" />
</TextBlock.Foreground>
</TextBlock>
</Border>
</Window>