Skip to content

Commit 821daa6

Browse files
authored
Merge pull request #52 from TomasPecinka/51-fix-low-contrast-detailsend-nodes-labels-in-light-themes
51 fix low contrast details / end nodes labels in light themes
2 parents f36bdfe + 0bb33c3 commit 821daa6

3 files changed

Lines changed: 16 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to Expression Tree Explorer are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.2] - 2026-06-22
9+
10+
### Changed
11+
- Improved label contrast in the Details and End Nodes panels under light VS themes.
12+
813
## [1.0.1] - 2026-06-15
914

1015
### Changed
@@ -23,5 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2328
- VS theme-aware styling.
2429
- Support for Visual Studio 2022 (17.9+) and Visual Studio 2026.
2530

31+
[1.0.2]: https://github.com/TomasPecinka/ExpressionTreeExplorer/releases/tag/v1.0.2
2632
[1.0.1]: https://github.com/TomasPecinka/ExpressionTreeExplorer/releases/tag/v1.0.1
2733
[1.0.0]: https://github.com/TomasPecinka/ExpressionTreeExplorer/releases/tag/v1.0.0

ExpressionTreeExplorer.Vsix/ExpressionTreeControl.xaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@
283283
<TextBlock Text="{Binding TypeDisplay}"
284284
FontFamily="Consolas"
285285
FontSize="11"
286-
Foreground="#569CD6" />
286+
Foreground="{DynamicResource {x:Static styles:VsBrushes.PanelHyperlinkKey}}" />
287287
</StackPanel>
288288
</Border.ToolTip>
289289
<StackPanel Orientation="Horizontal">
@@ -695,7 +695,7 @@
695695
<TextBlock Text="{Binding TypeDisplay}"
696696
FontFamily="Consolas"
697697
FontSize="12"
698-
Foreground="#569CD6"
698+
Foreground="{DynamicResource {x:Static styles:VsBrushes.PanelHyperlinkKey}}"
699699
Margin="0,4,0,0" />
700700
</StackPanel>
701701

@@ -834,7 +834,7 @@
834834
FontSize="12"
835835
Padding="6,4"
836836
Background="{DynamicResource {x:Static styles:VsBrushes.CommandBarMenuBackgroundGradientBeginKey}}"
837-
Foreground="#B5CEA8"
837+
Foreground="{DynamicResource {x:Static styles:VsBrushes.ToolWindowTextKey}}"
838838
BorderBrush="{DynamicResource {x:Static styles:VsBrushes.ToolWindowBorderKey}}"
839839
BorderThickness="1" />
840840
</StackPanel>
@@ -853,7 +853,7 @@
853853
FontFamily="Consolas"
854854
FontWeight="SemiBold"
855855
FontSize="12"
856-
Foreground="#9CDCFE" />
856+
Foreground="{DynamicResource {x:Static styles:VsBrushes.PanelHyperlinkKey}}" />
857857
<TextBlock Grid.Column="2"
858858
Text="{Binding Value}"
859859
FontFamily="Consolas"
@@ -915,7 +915,7 @@
915915
<TextBlock Text="{Binding TypeDisplay}"
916916
FontFamily="Consolas"
917917
FontSize="11"
918-
Foreground="#569CD6"
918+
Foreground="{DynamicResource {x:Static styles:VsBrushes.PanelHyperlinkKey}}"
919919
VerticalAlignment="Center" />
920920
</StackPanel>
921921
</Border>
@@ -965,7 +965,7 @@
965965
<TextBlock Text="{Binding TypeDisplay}"
966966
FontFamily="Consolas"
967967
FontSize="11"
968-
Foreground="#569CD6"
968+
Foreground="{DynamicResource {x:Static styles:VsBrushes.PanelHyperlinkKey}}"
969969
VerticalAlignment="Center" />
970970
<TextBlock Text=" = "
971971
FontFamily="Consolas"
@@ -975,7 +975,7 @@
975975
<TextBlock Text="{Binding Value}"
976976
FontFamily="Consolas"
977977
FontSize="12"
978-
Foreground="#B5CEA8"
978+
Foreground="{DynamicResource {x:Static styles:VsBrushes.ToolWindowTextKey}}"
979979
VerticalAlignment="Center" />
980980
</StackPanel>
981981
</Border>
@@ -1025,7 +1025,7 @@
10251025
<TextBlock Text="{Binding TypeDisplay}"
10261026
FontFamily="Consolas"
10271027
FontSize="11"
1028-
Foreground="#569CD6"
1028+
Foreground="{DynamicResource {x:Static styles:VsBrushes.PanelHyperlinkKey}}"
10291029
VerticalAlignment="Center" />
10301030
</StackPanel>
10311031
</Border>
@@ -1075,7 +1075,7 @@
10751075
<TextBlock Text="{Binding TypeDisplay}"
10761076
FontFamily="Consolas"
10771077
FontSize="11"
1078-
Foreground="#569CD6"
1078+
Foreground="{DynamicResource {x:Static styles:VsBrushes.PanelHyperlinkKey}}"
10791079
VerticalAlignment="Center" />
10801080
</StackPanel>
10811081
</Border>

ExpressionTreeExplorer.Vsix/ExpressionTreeExplorer.Vsix.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>net8.0-windows</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
6-
<Version>1.0.1</Version>
6+
<Version>1.0.2</Version>
77
</PropertyGroup>
88
<ItemGroup>
99
<None Remove="Assets\icon.png" />

0 commit comments

Comments
 (0)