Files
video-v1/vav2/platforms/windows/applications/vav2player/Vav2Player/App.xaml

54 lines
2.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Application
x:Class="Vav2Player.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Vav2Player"
RequestedTheme="Dark">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
<!-- Other merged dictionaries here -->
</ResourceDictionary.MergedDictionaries>
<!-- Global theme resource overrides for compact, modern UI -->
<!-- Control heights -->
<x:Double x:Key="AppBarThemeMinHeight">40</x:Double>
<x:Double x:Key="AppBarThemeCompactHeight">36</x:Double>
<x:Double x:Key="AppBarButtonThemeMinHeight">32</x:Double>
<x:Double x:Key="AppBarButtonThemeCompactHeight">28</x:Double>
<x:Double x:Key="CommandBarThemeMinHeight">40</x:Double>
<x:Double x:Key="CommandBarThemeCompactHeight">36</x:Double>
<!-- Font sizes -->
<x:Double x:Key="ControlContentThemeFontSize">12</x:Double>
<x:Double x:Key="AppBarButtonContentThemeFontSize">12</x:Double>
<!-- Paddings -->
<Thickness x:Key="ButtonPadding">6,3,6,3</Thickness>
<Thickness x:Key="AppBarButtonContentMargin">0,2,0,2</Thickness>
<Thickness x:Key="AppBarButtonInnerBorderMargin">0</Thickness>
<Thickness x:Key="CommandBarContentMargin">8,4,8,4</Thickness>
<Thickness x:Key="AppBarContentPadding">8,2,8,2</Thickness>
<!-- Dark theme color overrides -->
<!-- Background colors -->
<SolidColorBrush x:Key="ApplicationPageBackgroundThemeBrush" Color="#FF1E1E1E" />
<SolidColorBrush x:Key="SystemControlBackgroundChromeMediumBrush" Color="#FF2D2D2D" />
<SolidColorBrush x:Key="SystemControlBackgroundChromeMediumLowBrush" Color="#FF171717" />
<SolidColorBrush x:Key="SystemControlBackgroundChromeHighBrush" Color="#FF3F3F3F" />
<!-- Text colors -->
<SolidColorBrush x:Key="SystemControlForegroundBaseHighBrush" Color="#FFFFFFFF" />
<SolidColorBrush x:Key="SystemControlForegroundBaseMediumHighBrush" Color="#FFCCCCCC" />
<!-- Border colors -->
<SolidColorBrush x:Key="SystemControlForegroundBaseLowBrush" Color="#FF666666" />
<SolidColorBrush x:Key="SystemControlForegroundBaseMediumLowBrush" Color="#FF999999" />
<!-- Other app resources here -->
</ResourceDictionary>
</Application.Resources>
</Application>