style(ui): replace blue selection highlight with dimmed green

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mika Kuns
2026-04-14 10:58:41 +02:00
parent cd91120552
commit 028cd9a061

View File

@@ -37,5 +37,14 @@
<Application.Styles>
<FluentTheme />
<Style Selector="ListBoxItem:selected /template/ ContentPresenter">
<Setter Property="Background" Value="#333d9474"/>
</Style>
<Style Selector="ListBoxItem:pointerover /template/ ContentPresenter">
<Setter Property="Background" Value="#1A3D9474"/>
</Style>
<Style Selector="ListBoxItem:selected:pointerover /template/ ContentPresenter">
<Setter Property="Background" Value="#403D9474"/>
</Style>
</Application.Styles>
</Application>