v0.18.0 — Bluer dark palette to match ASTERION VR identity

Shifts the launcher background from pure black to deep navy and adds a
subtle blue tint over the body bitmap so the overall feel is closer to
the brand's blue/cyan accent rather than neutral black-on-grey.

Theme.xaml palette tweaks
- Brush.Bg.Window  : #000000 → #0A1220 (deep navy, ~95% black)
- Brush.Bg.Sidebar : #0E1218 → #0E1422
- Brush.Bg.Card    : #161B23 → #161D2C
- Brush.Bg.Footer  : #050709 → #060A14
- New Brush.Bg.BlueTint : #3050A0 @ 8% opacity, used as overlay

MainWindow.xaml
- Outer Grid Background : hardcoded "Black" → Brush.Bg.Window
  (so future tweaks of the brush propagate)
- New Rectangle on top of the body Background.png with the blue tint
  brush, IsHitTestVisible=False so it doesn't block clicks.

Versions bumped to 0.18.0.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-03 11:30:24 +02:00
parent e608a5d29d
commit 8366ca2669
5 changed files with 25 additions and 12 deletions

View File

@@ -11,12 +11,19 @@
<!-- Inverse bool : utilisé pour griser un bouton pendant qu'une opération est en cours -->
<res:InverseBoolConverter x:Key="InverseBoolToBool" />
<!-- Fond fenêtre : noir pur pour ne pas délaver le bitmap overlay -->
<SolidColorBrush x:Key="Brush.Bg.Window" Color="#000000" />
<!-- Cards & sidebar : très légère teinte bleutée pour le contraste -->
<SolidColorBrush x:Key="Brush.Bg.Sidebar" Color="#0E1218" />
<SolidColorBrush x:Key="Brush.Bg.Card" Color="#161B23" />
<SolidColorBrush x:Key="Brush.Bg.Footer" Color="#050709" />
<!-- Fond fenêtre : navy profond. Donne au bitmap overlay (logo Asterion VR
en bas-droite) une teinte bleutée discrète sans délaver l'image.
Anciennement #000000 (noir pur), passé à navy en v0.18 sur demande
visuelle pour matcher l'identité bleu/cyan d'ASTERION VR. -->
<SolidColorBrush x:Key="Brush.Bg.Window" Color="#0A1220" />
<!-- Cards & sidebar : navy plus saturé pour le contraste avec le content -->
<SolidColorBrush x:Key="Brush.Bg.Sidebar" Color="#0E1422" />
<SolidColorBrush x:Key="Brush.Bg.Card" Color="#161D2C" />
<SolidColorBrush x:Key="Brush.Bg.Footer" Color="#060A14" />
<!-- Voile bleu posé sur le bitmap de background pour renforcer la teinte
navy. Très transparent (5%) pour ne pas masquer l'image. -->
<SolidColorBrush x:Key="Brush.Bg.BlueTint" Color="#3050A0" Opacity="0.08" />
<SolidColorBrush x:Key="Brush.Border" Color="#2A2F3A" />
<SolidColorBrush x:Key="Brush.Text.Primary" Color="#F2F2F2" />
<SolidColorBrush x:Key="Brush.Text.Secondary" Color="#A0A0A8" />