Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 51 additions & 51 deletions Wauncher/App.axaml
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Wauncher.App"
x:CompileBindings="True"
x:DataType="local:App"
xmlns:local="using:Wauncher"
xmlns:themes="using:Avalonia.Styling"
xmlns:fluent="using:Avalonia.Themes.Fluent">
<Application.DataTemplates>
<local:ViewLocator/>
</Application.DataTemplates>
<Application.Styles>
<FluentTheme>
<FluentTheme.Palettes>
<fluent:ColorPaletteResources x:Key="Light" Accent="#22C55E" />
<fluent:ColorPaletteResources x:Key="Dark" Accent="#22C55E" />
</FluentTheme.Palettes>
</FluentTheme>
<StyleInclude Source="/Assets/Styles.axaml"/>
</Application.Styles>
<Application.Resources>
<ResourceDictionary>
<SolidColorBrush x:Key="AppTitleBarBrush">#CC3A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppMainBackground">#3A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppAccentGreen">#4CAF50</SolidColorBrush>
<SolidColorBrush x:Key="AppTextColor">White</SolidColorBrush>
<SolidColorBrush x:Key="AppPrimaryText">White</SolidColorBrush>
<SolidColorBrush x:Key="AppMutedText">#88FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppSectionLabel">#55FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppBodyText">#CCFFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppBulletText">#AAFFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppDivider">#22FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppDivider2">#33FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppInputBg">#33FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppServerHover">#22FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppServerPressed">#11FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnBg">#44FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnHover">#99FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnPressed">#33FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnBorder">#22FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppRightPanelBg">#223A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppServerListBg">#FF3A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppGreetingName">White</SolidColorBrush>
<SolidColorBrush x:Key="AppLinkText">#6CB5F5</SolidColorBrush>
</ResourceDictionary>
</Application.Resources>
</Application>
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Wauncher.App"
x:CompileBindings="True"
x:DataType="local:App"
xmlns:local="using:Wauncher"
xmlns:themes="using:Avalonia.Styling"
xmlns:fluent="using:Avalonia.Themes.Fluent">

<Application.DataTemplates>
<local:ViewLocator/>
</Application.DataTemplates>

<Application.Styles>
<FluentTheme>
<FluentTheme.Palettes>
<fluent:ColorPaletteResources x:Key="Light" Accent="#22C55E" />
<fluent:ColorPaletteResources x:Key="Dark" Accent="#22C55E" />
</FluentTheme.Palettes>
</FluentTheme>
<StyleInclude Source="/Assets/Styles.axaml"/>
</Application.Styles>

<Application.Resources>
<ResourceDictionary>
<SolidColorBrush x:Key="AppTitleBarBrush">#CC3A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppMainBackground">#3A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppAccentGreen">#4CAF50</SolidColorBrush>
<SolidColorBrush x:Key="AppTextColor">White</SolidColorBrush>
<SolidColorBrush x:Key="AppPrimaryText">White</SolidColorBrush>
<SolidColorBrush x:Key="AppMutedText">#88FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppSectionLabel">#55FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppBodyText">#CCFFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppBulletText">#AAFFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppDivider">#22FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppDivider2">#33FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppInputBg">#33FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppServerHover">#22FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppServerPressed">#11FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnBg">#44FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnHover">#99FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnPressed">#33FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppIconBtnBorder">#22FFFFFF</SolidColorBrush>
<SolidColorBrush x:Key="AppRightPanelBg">#223A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppServerListBg">#FF3A3A3A</SolidColorBrush>
<SolidColorBrush x:Key="AppGreetingName">White</SolidColorBrush>
<SolidColorBrush x:Key="AppLinkText">#6CB5F5</SolidColorBrush>
</ResourceDictionary>
</Application.Resources>

</Application>
Loading
Loading