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:
@@ -15,9 +15,9 @@
|
||||
<Product>PROSERVE Launcher</Product>
|
||||
<Copyright>© 2026 ASTERION VR — All rights reserved</Copyright>
|
||||
<RootNamespace>PSLauncher.App</RootNamespace>
|
||||
<Version>0.17.0</Version>
|
||||
<AssemblyVersion>0.17.0.0</AssemblyVersion>
|
||||
<FileVersion>0.17.0.0</FileVersion>
|
||||
<Version>0.18.0</Version>
|
||||
<AssemblyVersion>0.18.0.0</AssemblyVersion>
|
||||
<FileVersion>0.18.0.0</FileVersion>
|
||||
|
||||
<!-- Single-file self-contained publish profile (used by `dotnet publish`) -->
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
La sidebar a RowSpan=2 → s'étend du sous-topbar jusqu'au bas
|
||||
de fenêtre. Le footer est confiné à la colonne content.
|
||||
-->
|
||||
<Grid Background="Black">
|
||||
<Grid Background="{StaticResource Brush.Bg.Window}">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="200" />
|
||||
<ColumnDefinition Width="*" />
|
||||
@@ -216,6 +216,12 @@
|
||||
Opacity="0.25" />
|
||||
</Rectangle.Fill>
|
||||
</Rectangle>
|
||||
<!-- Voile bleuté (~8% opacité) posé sur l'image pour donner la teinte
|
||||
navy/cyan d'ASTERION VR. IsHitTestVisible=False pour ne pas bloquer
|
||||
les clics qui visent le content area. -->
|
||||
<Rectangle Grid.Row="1" Grid.Column="1"
|
||||
Fill="{StaticResource Brush.Bg.BlueTint}"
|
||||
IsHitTestVisible="False" />
|
||||
|
||||
<!-- Top bar : 3 colonnes (brand / license center / chrome).
|
||||
Grid.ColumnSpan=2 → s'étend sur sidebar + content. -->
|
||||
|
||||
Reference in New Issue
Block a user